|
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/2313: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 | #ifdefHAVE_LL_CONSTANTS
|
305 | 305 | #defineINT64CONST(x) ((int64) x##LL)
|
306 |
| -#defineUINT64CONST(x) ((uint64) x##LL) |
| 306 | +#defineUINT64CONST(x) ((uint64) x##ULL) |
307 | 307 | #else
|
308 | 308 | #defineINT64CONST(x) ((int64) x)
|
309 | 309 | #defineUINT64CONST(x) ((uint64) x)
|
|