projects
/
users
/
andresfreund
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9ab5cd1
)
aio: fix flush_range.offset/nbytes type confusion.
author
Andres Freund
<andres@anarazel.de>
Tue, 12 Jan 2021 04:25:02 +0000
(20:25 -0800)
committer
Andres Freund
<andres@anarazel.de>
Wed, 13 Jan 2021 01:16:25 +0000
(17:16 -0800)
src/backend/storage/ipc/aio.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/storage/ipc/aio.c
b/src/backend/storage/ipc/aio.c
index 1bd015b238252636aba60b3db121266858d8b87f..b63184dd5e32464bfce4e55197290e69a4c5bcbc 100644
(file)
--- a/
src/backend/storage/ipc/aio.c
+++ b/
src/backend/storage/ipc/aio.c
@@
-214,8
+214,8
@@
struct PgAioInProgress
struct
{
int fd;
- uint
64
nbytes;
- uint
32
offset;
+ uint
32
nbytes;
+ uint
64
offset;
} flush_range;
struct