aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2012-06-24 20:00:42 +0300
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2012-06-24 20:01:55 +0300
commit96ff85e2dd64e7987ee6d69f306e3b8f54cc72c0 (patch)
treeeb7c6d403ba01ccf53e2e47bb07913dfac9eccf7 /src
parent0ab9d1c4b31622e9176472b4276f3e9831e3d6ba (diff)
downloadpostgresql-96ff85e2dd64e7987ee6d69f306e3b8f54cc72c0.tar.gz
postgresql-96ff85e2dd64e7987ee6d69f306e3b8f54cc72c0.zip
Use LL suffix for 64-bit constants.
Per warning from buildfarm member 'locust'. At least I think this what's making it upset.
Diffstat (limited to 'src')
-rw-r--r--src/include/access/xlog_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/xlog_internal.h b/src/include/access/xlog_internal.h
index 4ad4d136999..22d2c644e72 100644
--- a/src/include/access/xlog_internal.h
+++ b/src/include/access/xlog_internal.h
@@ -110,7 +110,7 @@ typedef XLogLongPageHeaderData *XLogLongPageHeader;
* by XLOG_SEG_SIZE.
*/
#define XLogSegSize ((uint32) XLOG_SEG_SIZE)
-#define XLogSegmentsPerXLogId (0x100000000L / XLOG_SEG_SIZE)
+#define XLogSegmentsPerXLogId (0x100000000LL / XLOG_SEG_SIZE)
#define XLogSegNoOffsetToRecPtr(segno, offset, dest) \
(dest) = (segno) * XLOG_SEG_SIZE + (offset)