Mercurial > mplayer.hg
changeset 24215:0289f3a530cb
warning fixes:
realcodecs/ra.c: In function 'RASetFlavor':
realcodecs/ra.c:344: warning: unused variable 'property'
realcodecs/ra.c:343: warning: unused variable 'flavor'
realcodecs/ra.c:343: warning: unused variable 'numflavors'
realcodecs/ra.c:342: warning: unused variable 'result1'
realcodecs/ra.c:342: warning: unused variable 'numprop'
author | diego |
---|---|
date | Mon, 27 Aug 2007 10:58:30 +0000 |
parents | 98e7c165d299 |
children | 5fcc1a21f978 |
files | TOOLS/realcodecs/ra.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/TOOLS/realcodecs/ra.c Mon Aug 27 10:56:48 2007 +0000 +++ b/TOOLS/realcodecs/ra.c Mon Aug 27 10:58:30 2007 +0000 @@ -339,9 +339,9 @@ } ulong RASetFlavor(ulong p1,ulong p2) { - ulong result, numprop=0, result1=0; - ulong numflavors, flavor; - unsigned short property; + ulong result; +// ulong numflavors, flavor, numprop=0, result1=0; +// unsigned short property; fprintf(stderr, "RASetFlavor(ulong p1=0x%0x(%d), ", p1, p1); fprintf(stderr, "ulong p2=0x%0x(%d))\n", p2, p2); hexdump((void*)p1, 44);