1
mirror of https://github.com/mpv-player/mpv synced 2025-01-16 22:37:28 +01:00

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
This commit is contained in:
diego 2007-12-10 13:16:10 +00:00
parent 0822727933
commit d123fad2bd

View File

@ -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){