1
mirror of https://github.com/mpv-player/mpv synced 2024-08-24 07:21:49 +02:00

Remove useless 0 flag from s printf conversion specifier, fixes the warning:

TOOLS/movinfo.c:332: warning: '0' flag used with '%s' printf format


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26506 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-04-23 09:24:54 +00:00
parent ea35e0563d
commit e8d9d7db4e

View File

@ -328,7 +328,7 @@ int main(int argc,char* argv[])
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);