aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2004-06-20 09:31:48 +0000
committerUlf Lamping <ulf.lamping@web.de>2004-06-20 09:31:48 +0000
commit7812b42c24f1bf1663716fd7be5779986d07ca49 (patch)
treef624e082a21826427f83ad21909711add6142939
parent1d2413f4a381017248ecdcc6bed7d13c5f1b398d (diff)
bugfix: prefix for int64 output on win32 must be "I64" not "i64"
svn path=/trunk/; revision=11191
-rw-r--r--config.h.win3210
1 files changed, 5 insertions, 5 deletions
diff --git a/config.h.win32 b/config.h.win32
index c040e018f9..514d0648e3 100644
--- a/config.h.win32
+++ b/config.h.win32
@@ -1,4 +1,4 @@
-/* $Id: config.h.win32,v 1.46 2004/06/19 00:07:22 guy Exp $ */
+/* $Id: config.h.win32,v 1.47 2004/06/20 09:31:48 ulfl Exp $ */
/* config.h.win32 Generated manually. :-) */
/* config.h. Generated automatically by configure. */
/* config.h.in. Generated automatically from configure.in by autoheader. */
@@ -124,7 +124,7 @@
/* Format for printing 64-bit signed decimal numbers */
#ifndef PRId64
#ifdef _MSC_EXTENSIONS
-#define PRId64 "i64d"
+#define PRId64 "I64d"
#else /* _MSC_EXTENSIONS */
#define PRId64 "lld"
#endif /* _MSC_EXTENSIONS */
@@ -133,7 +133,7 @@
/* Format for printing 64-bit unsigned octal numbers */
#ifndef PRIo64
#ifdef _MSC_EXTENSIONS
-#define PRIo64 "i64o"
+#define PRIo64 "I64o"
#else /* _MSC_EXTENSIONS */
#define PRIo64 "llo"
#endif /* _MSC_EXTENSIONS */
@@ -142,7 +142,7 @@
/* Format for printing 64-bit unsigned decimal numbers */
#ifndef PRIu64
#ifdef _MSC_EXTENSIONS
-#define PRIu64 "i64u"
+#define PRIu64 "I64u"
#else /* _MSC_EXTENSIONS */
#define PRIu64 "llu"
#endif /* _MSC_EXTENSIONS */
@@ -151,7 +151,7 @@
/* Format for printing 64-bit unsigned hexadecimal numbers */
#ifndef PRIx64
#ifdef _MSC_EXTENSIONS
-#define PRIx64 "i64x"
+#define PRIx64 "I64x"
#else /* _MSC_EXTENSIONS */
#define PRIx64 "llx"
#endif /* _MSC_EXTENSIONS */