summaryrefslogtreecommitdiff
path: root/test1.c
diff options
context:
space:
mode:
Diffstat (limited to 'test1.c')
-rw-r--r--test1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test1.c b/test1.c
index da1fcef..e472cfe 100644
--- a/test1.c
+++ b/test1.c
@@ -335,7 +335,7 @@ int main(int argc, const char ** argv)
fprintf(stdout, " aLong: %ld", aLong);
if (aLongLong != bLongLong)
#if defined(_MSC_VER) || defined(__MINGW32__)
- fprintf(stdout, " aLongLong: %" LONG_LONG_FORMAT, aLongLong);
+ fprintf(stdout, " aLongLong: %I64d", aLongLong);
#else
fprintf(stdout, " aLongLong: %lld", aLongLong);
#endif