Mercurial > mplayer.hg
changeset 26474:5ac02417f474
Remove useless 0 flag from s printf conversion specifier, fixes the warning:
TOOLS/movinfo.c:332: warning: '0' flag used with '%s' printf format
author | diego |
---|---|
date | Wed, 23 Apr 2008 09:24:54 +0000 |
parents | 47864c18ff54 |
children | 4fe4c27637e0 |
files | TOOLS/movinfo.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/TOOLS/movinfo.c Wed Apr 23 07:50:54 2008 +0000 +++ b/TOOLS/movinfo.c Wed Apr 23 09:24:54 2008 +0000 @@ -328,7 +328,7 @@ if ((f = fopen(argc>1?argv[1]:"Akira.mov","rb")) == NULL) return 1; - printf("%.8s %.4s (%.8s) %05s [%s]\n\n", + printf("%.8s %.4s (%.8s) %5s [%s]\n\n", "position", "atom", "atomtype", "len", "human readable atom name"); lschunks(f, 0, 0);