Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit9236c79

Browse files
committed
Use ULL not LL in UINT64CONST.
1 parent786f3d1 commit9236c79

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/2313: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
#ifdefHAVE_LL_CONSTANTS
305305
#defineINT64CONST(x) ((int64) x##LL)
306-
#defineUINT64CONST(x) ((uint64) x##LL)
306+
#defineUINT64CONST(x) ((uint64) x##ULL)
307307
#else
308308
#defineINT64CONST(x) ((int64) x)
309309
#defineUINT64CONST(x) ((uint64) x)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp