[MPlayer-cvslog] r26506 - trunk/TOOLS/movinfo.c

diego subversion at mplayerhq.hu
Wed Apr 23 11:24:55 CEST 2008


Author: diego
Date: Wed Apr 23 11:24:54 2008
New Revision: 26506

Log:
Remove useless 0 flag from s printf conversion specifier, fixes the warning:
TOOLS/movinfo.c:332: warning: '0' flag used with '%s' printf format


Modified:
   trunk/TOOLS/movinfo.c

Modified: trunk/TOOLS/movinfo.c
==============================================================================
--- trunk/TOOLS/movinfo.c	(original)
+++ trunk/TOOLS/movinfo.c	Wed Apr 23 11:24:54 2008
@@ -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);



More information about the MPlayer-cvslog mailing list