Skip to content

Commit

Permalink
Fix gint64 format
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowone committed Apr 22, 2013
1 parent 519c06e commit 65fe78f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions glib/glibconfig.h
Expand Up @@ -54,9 +54,9 @@ typedef unsigned long long guint64;

#define G_GINT64_CONSTANT(val) (val##L)
#define G_GUINT64_CONSTANT(val) (val##UL)
#define G_GINT64_MODIFIER "l"
#define G_GINT64_FORMAT "li"
#define G_GUINT64_FORMAT "lu"
#define G_GINT64_MODIFIER "ll"
#define G_GINT64_FORMAT "lli"
#define G_GUINT64_FORMAT "llu"

#define GLIB_SIZEOF_VOID_P 8
#define GLIB_SIZEOF_LONG 8
Expand Down

0 comments on commit 65fe78f

Please sign in to comment.