diff options
author | Andres Freund | 2025-06-30 14:20:14 +0000 |
---|---|---|
committer | Andres Freund | 2025-06-30 14:22:02 +0000 |
commit | f20a347e1a613cfc9053e7bc3d254608ae968386 (patch) | |
tree | aa34817c75826f193b39f603799b31a91b1c24df /src/include/storage | |
parent | c3e28e9fd936b83dbb6dfb5003b6221d98f8469c (diff) |
aio: Fix reference to outdated name
Reported-by: Antonin Houska <[email protected]>
Author: Antonin Houska <[email protected]>
Discussion: https://postgr.es/m/5250.1751266701@localhost
Backpatch-through: 18, where da7226993fd4 introduced this
Diffstat (limited to 'src/include/storage')
-rw-r--r-- | src/include/storage/aio_types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/storage/aio_types.h b/src/include/storage/aio_types.h index 18183366077..afee85c787b 100644 --- a/src/include/storage/aio_types.h +++ b/src/include/storage/aio_types.h @@ -107,7 +107,7 @@ typedef struct PgAioResult /* of type PgAioResultStatus, see above */ uint32 status:PGAIO_RESULT_STATUS_BITS; - /* meaning defined by callback->error */ + /* meaning defined by callback->report */ uint32 error_data:PGAIO_RESULT_ERROR_BITS; int32 result; |