Skip to content

Commit a79ec22

Browse files
author
Alexander Korotkov
committed
Fix slru file naming.
1 parent 9e5d0e9 commit a79ec22

File tree

1 file changed

+1
-1
lines changed
  • src/backend/access/transam

1 file changed

+1
-1
lines changed

src/backend/access/transam/slru.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262

6363
#define SlruFileName(ctl, path, seg) \
6464
snprintf(path, MAXPGPATH, "%s/%04X%08X", (ctl)->Dir, \
65-
(uint32) ((seg) & (int64)0xFFFFFFFF), (uint32) ((seg) >> 32))
65+
(uint32) ((seg) >> 32), (uint32) ((seg) & (int64)0xFFFFFFFF))
6666

6767
/*
6868
* During SimpleLruFlush(), we will usually not need to write/fsync more

0 commit comments

Comments
 (0)