Patch attached to fix compiler warning.
I think this part
#if defined(PRId64) sscanf(buf, "%" PRId64 " %n", &timeval, &n); #else sscanf(buf, "%lld %n", &timeval, &n); #endif
should be
#if defined(SCNd64) sscanf(buf, "%" SCNd64 " %n", &timeval, &n); #else sscanf(buf, "%lld %n", &timeval, &n); #endif
Your right.
With mingw64 inttypes.h has the following: #define SCNd64 PRId64
#define SCNd64 PRId64
Log in to post a comment.
I think this part
should be
Your right.
With mingw64 inttypes.h has the following:
#define SCNd64 PRId64