]> granicus.if.org Git - json-c/commitdiff
Fix the _MSC_VER check so it compiles on non-windows compilers. Issue#91
authorEric Haszlakiewicz <erh+git@nimenees.com>
Mon, 24 Jun 2013 00:12:14 +0000 (19:12 -0500)
committerEric Haszlakiewicz <erh+git@nimenees.com>
Mon, 24 Jun 2013 00:12:14 +0000 (19:12 -0500)
json_inttypes.h

index bfe1060f0bde381274095ce7efa9cfe9dea7606d..9de8d246d9dda0ab82772fc9d97ec1a9b3ad2807 100644 (file)
@@ -4,7 +4,7 @@
 
 #include "json_config.h"
 
-#if defined(_MSC_VER) && _MSC_VER =< 1700
+#if defined(_MSC_VER) && _MSC_VER <= 1700
 
 /* Anything less than Visual Studio C++ 10 is missing stdint.h and inttypes.h */
 typedef __int32 int32_t;