diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-09-26 15:13:42 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-09-26 15:13:42 +0000 |
commit | 9236c79c8e726bda1e69d6f283ead1717324f2d8 (patch) | |
tree | 9420291bd3aa137ce4a24d816caae6388e2907e3 | |
parent | 786f3d147dad9568b79c37ab4d49b3fd3c407e06 (diff) | |
download | postgresql-9236c79c8e726bda1e69d6f283ead1717324f2d8.tar.gz postgresql-9236c79c8e726bda1e69d6f283ead1717324f2d8.zip |
Use ULL not LL in UINT64CONST.
-rw-r--r-- | src/include/c.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/c.h b/src/include/c.h index 0c9e88d1844..29657169f94 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/c.h,v 1.173 2004/09/23 13:16:02 momjian Exp $ + * $PostgreSQL: pgsql/src/include/c.h,v 1.174 2004/09/26 15:13:42 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -303,7 +303,7 @@ typedef unsigned long int uint64; /* Decide if we need to decorate 64-bit constants */ #ifdef HAVE_LL_CONSTANTS #define INT64CONST(x) ((int64) x##LL) -#define UINT64CONST(x) ((uint64) x##LL) +#define UINT64CONST(x) ((uint64) x##ULL) #else #define INT64CONST(x) ((int64) x) #define UINT64CONST(x) ((uint64) x) |