From d123fad2bd76af5fc7d3742b0fadb18ec297729d Mon Sep 17 00:00:00 2001 From: diego Date: Mon, 10 Dec 2007 13:16:10 +0000 Subject: Fix printf format string length modifiers, removes the warnings: vivodump.c:213: warning: format '%08X' expects type 'unsigned int', but argument 2 has type 'long int' vivodump.c:220: warning: format '%08X' expects type 'unsigned int', but argument 2 has type 'long int' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25337 b3059339-0415-0410-9bf9-f77b7e298cf2 --- TOOLS/vivodump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'TOOLS') diff --git a/TOOLS/vivodump.c b/TOOLS/vivodump.c index 6f14093797..bd6d3db3a1 100644 --- a/TOOLS/vivodump.c +++ b/TOOLS/vivodump.c @@ -210,14 +210,14 @@ for(i=0;i=0){ - printf("%08X %02X\n",ftell(f),c); + printf("%08lX %02X\n",ftell(f),c); prefix=0; if(c==0x82){ prefix=1; //continue; c=fgetc(f); - printf("%08X %02X\n",ftell(f),c); + printf("%08lX %02X\n",ftell(f),c); } if(c==0x00){ -- cgit v1.2.3