windows build fix

This commit is contained in:
Chris Jones 2009-07-21 08:58:28 -05:00
parent f349133c54
commit aeec2c150f

View File

@ -99,9 +99,9 @@ const int64 kint64max = (( int64) GG_LONGLONG(0x7FFFFFFFFFFFFFFF));
# define __STDC_FORMAT_MACROS 1
# include <inttypes.h> // for 64-bit integer format macros
# elif defined(OS_WIN)
# define PRd64 "I64d"
# define PRu64 "I64u"
# define PRx64 "I64x"
# define PRId64 "I64d"
# define PRIu64 "I64u"
# define PRIx64 "I64x"
# endif
#endif // defined(CHROMIUM_MOZILLA_BUILD)