]> granicus.if.org Git - libexpat/commitdiff
* Added integer modifier macro to support 64-bit integers in printf.
authorKarl Waclawek <kwaclaw@users.sourceforge.net>
Sun, 25 Dec 2005 17:05:10 +0000 (17:05 +0000)
committerKarl Waclawek <kwaclaw@users.sourceforge.net>
Sun, 25 Dec 2005 17:05:10 +0000 (17:05 +0000)
* Made include directives of configuration header files sync'ed
  with xmlparse.c.

expat/xmlwf/xmlfile.c

index edcf1a5ba167d8766646a3d402013ced13d804fb..88bb396b9c42799e15e3c1a1bbc5cd21b1163223 100755 (executable)
@@ -7,13 +7,17 @@
 #include <stddef.h>
 #include <string.h>
 #include <fcntl.h>
+
 #ifdef COMPILED_FROM_DSP
 #include "winconfig.h"
-#else
-#ifdef HAVE_EXPAT_CONFIG_H
-#include "expat_config.h"
-#endif
-#endif
+#elif defined(MACOS_CLASSIC)
+#include "macconfig.h"
+#elif defined(__amigaos4__)
+#include "amigaconfig.h"
+#elif defined(HAVE_EXPAT_CONFIG_H)
+#include <expat_config.h>
+#endif /* ndef COMPILED_FROM_DSP */
+
 #include "expat.h"
 #include "xmlfile.h"
 #include "xmltchar.h"
@@ -57,7 +61,7 @@ reportError(XML_Parser parser, const XML_Char *filename)
   enum XML_Error code = XML_GetErrorCode(parser);
   const XML_Char *message = XML_ErrorString(code);
   if (message)
-    ftprintf(stdout, T("%s:%d:%d: %s\n"),
+    ftprintf(stdout, T("%s:%" XML_FMT_INT_MOD "u:%" XML_FMT_INT_MOD "u: %s\n"),
              filename,
              XML_GetErrorLineNumber(parser),
              XML_GetErrorColumnNumber(parser),