Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 9236c79

Browse files
committed
Use ULL not LL in UINT64CONST.
1 parent 786f3d1 commit 9236c79

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/include/c.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
1313
* Portions Copyright (c) 1994, Regents of the University of California
1414
*
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 $
1616
*
1717
*-------------------------------------------------------------------------
1818
*/
@@ -303,7 +303,7 @@ typedef unsigned long int uint64;
303303
/* Decide if we need to decorate 64-bit constants */
304304
#ifdef HAVE_LL_CONSTANTS
305305
#define INT64CONST(x) ((int64) x##LL)
306-
#define UINT64CONST(x) ((uint64) x##LL)
306+
#define UINT64CONST(x) ((uint64) x##ULL)
307307
#else
308308
#define INT64CONST(x) ((int64) x)
309309
#define UINT64CONST(x) ((uint64) x)

0 commit comments

Comments
 (0)