Browse Source

Fix compilation warning on win32.

Con Kolivas 14 years ago
parent
commit
d3642bec6f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compat/jansson/jansson.h

+ 1 - 1
compat/jansson/jansson.h

@@ -52,7 +52,7 @@ typedef struct {
     size_t refcount;
 } json_t;
 
-#if JSON_INTEGER_IS_LONG_LONG
+#if JSON_INTEGER_IS_LONG_LONG && (!defined(WIN32))
 #define JSON_INTEGER_FORMAT "lld"
 typedef long long json_int_t;
 #else