summaryrefslogtreecommitdiffstats
path: root/TOOLS/realcodecs/cook.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-21 05:43:49 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-21 05:43:49 +0000
commit513aaf06957352af2346e6c18279507b978cb52e (patch)
tree0e1e56446f03f6c88dc28c4dd02a5da25f0ab202 /TOOLS/realcodecs/cook.c
parent71d7b8f7479a3b1eabde57dcea102a0a8599c29a (diff)
downloadmpv-513aaf06957352af2346e6c18279507b978cb52e.tar.bz2
mpv-513aaf06957352af2346e6c18279507b978cb52e.tar.xz
Remove pointless '0' flag from fprintf call, fixes the warning:
warning: '0' flag ignored with precision and '%d' printf format git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26481 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS/realcodecs/cook.c')
-rw-r--r--TOOLS/realcodecs/cook.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/TOOLS/realcodecs/cook.c b/TOOLS/realcodecs/cook.c
index 6dd9b22576..2ca335357b 100644
--- a/TOOLS/realcodecs/cook.c
+++ b/TOOLS/realcodecs/cook.c
@@ -161,7 +161,7 @@ void toc() {
usecs+=1000000;
--secs;
}
- fprintf(stderr, "Duration: %ld.%0.6lds\n", secs, usecs);
+ fprintf(stderr, "Duration: %ld.%.6lds\n", secs, usecs);
}