1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-14 00:38:02 +00:00

Fix compilation warning on win32.

This commit is contained in:
Con Kolivas 2011-09-06 09:49:30 +10:00
parent fd23532bdb
commit d3642bec6f

View File

@ -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