summaryrefslogtreecommitdiff
path: root/test1.c
diff options
context:
space:
mode:
authordevzero2000 <devzero2000>2011-09-05 13:20:54 +0000
committerdevzero2000 <devzero2000>2011-09-05 13:20:54 +0000
commit7bfc5be6d045d8e8fb869308a768a5b683de68a6 (patch)
tree3bc56967cfd3df4dcd8a3ec660ff9ec95af90ac1 /test1.c
parent127a925390d2df065e48c3bd6365c4e7755338a7 (diff)
downloadlibpopt-7bfc5be6d045d8e8fb869308a768a5b683de68a6.tar.gz
redo commit 8396019 againrpm-5_4_3-release
get rid of LONG_LONG format specifier and inline it instead
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