# HG changeset patch # User diego # Date 1208942694 0 # Node ID 5ac02417f47496b3db900a977522e2c2b1ae2449 # Parent 47864c18ff54c314f80cd0846a7fcc8342e114ae Remove useless 0 flag from s printf conversion specifier, fixes the warning: TOOLS/movinfo.c:332: warning: '0' flag used with '%s' printf format diff -r 47864c18ff54 -r 5ac02417f474 TOOLS/movinfo.c --- 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);