diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-03-30 12:23:28 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-03-30 12:23:28 +0000 |
commit | e0fb449076307855bb4a195e042eb3768473dbab (patch) | |
tree | 7c7f9ccf4ad7d17b3d0f116fb383686251457795 /libswscale | |
parent | 79568f8ea5e8d2b638973e938207536695bc977b (diff) | |
download | mpv-e0fb449076307855bb4a195e042eb3768473dbab.tar.bz2 mpv-e0fb449076307855bb4a195e042eb3768473dbab.tar.xz |
Use correct PRId64 instead of "lld" in printf string, fixes compiler warnings.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29107 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/swscale-example.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale-example.c b/libswscale/swscale-example.c index e89930ff81..8d60332897 100644 --- a/libswscale/swscale-example.c +++ b/libswscale/swscale-example.c @@ -132,7 +132,7 @@ static int doTest(uint8_t *ref[4], int refStride[4], int w, int h, int srcFormat ssdV/= w*h/4; ssdA/= w*h; - printf(" %s %dx%d -> %s %4dx%4d flags=%2d SSD=%5lld,%5lld,%5lld,%5lld\n", + printf(" %s %dx%d -> %s %4dx%4d flags=%2d SSD=%5"PRId64",%5"PRId64",%5"PRId64",%5"PRId64"\n", sws_format_name(srcFormat), srcW, srcH, sws_format_name(dstFormat), dstW, dstH, flags, ssdY, ssdU, ssdV, ssdA); |