From 7bfc5be6d045d8e8fb869308a768a5b683de68a6 Mon Sep 17 00:00:00 2001 From: devzero2000 Date: Mon, 5 Sep 2011 13:20:54 +0000 Subject: redo commit 8396019 again get rid of LONG_LONG format specifier and inline it instead --- test1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test1.c') 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 -- cgit v1.2.1