summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-10 13:16:10 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-10 13:16:10 +0000
commitd123fad2bd76af5fc7d3742b0fadb18ec297729d (patch)
tree81f104059dc4e2791eb96442a4e3558e92f81d3e /TOOLS
parent0822727933e7d98531d6cadfcdf5f1766c26de61 (diff)
downloadmpv-d123fad2bd76af5fc7d3742b0fadb18ec297729d.tar.bz2
mpv-d123fad2bd76af5fc7d3742b0fadb18ec297729d.tar.xz
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
Diffstat (limited to 'TOOLS')
-rw-r--r--TOOLS/vivodump.c4
1 files changed, 2 insertions, 2 deletions
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<len;i++) fgetc(f);
while((c=fgetc(f))>=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){