File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 12
12
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
13
13
* Portions Copyright (c) 1994, Regents of the University of California
14
14
*
15
- * $PostgreSQL: pgsql/src/include/c.h,v 1.173 2004/09/23 13:16:02 momjian Exp $
15
+ * $PostgreSQL: pgsql/src/include/c.h,v 1.174 2004/09/26 15: 13:42 tgl Exp $
16
16
*
17
17
*-------------------------------------------------------------------------
18
18
*/
@@ -303,7 +303,7 @@ typedef unsigned long int uint64;
303
303
/* Decide if we need to decorate 64-bit constants */
304
304
#ifdef HAVE_LL_CONSTANTS
305
305
#define INT64CONST (x ) ((int64) x##LL)
306
- #define UINT64CONST (x ) ((uint64) x##LL )
306
+ #define UINT64CONST (x ) ((uint64) x##ULL )
307
307
#else
308
308
#define INT64CONST (x ) ((int64) x)
309
309
#define UINT64CONST (x ) ((uint64) x)
You can’t perform that action at this time.
0 commit comments