changeset 24213:29fe677d8a19

warning fixes: realcodecs/14_4.c: In function 'RAInitDecoder': realcodecs/14_4.c:238: warning: unused variable 'temp2' realcodecs/14_4.c:237: warning: unused variable 'temp' realcodecs/14_4.c: In function 'RASetFlavor': realcodecs/14_4.c:273: warning: unused variable 'property' realcodecs/14_4.c:272: warning: unused variable 'flavor' realcodecs/14_4.c:272: warning: unused variable 'numflavors' realcodecs/14_4.c:271: warning: unused variable 'result1' realcodecs/14_4.c:271: warning: unused variable 'numprop'
author diego
date Mon, 27 Aug 2007 10:55:27 +0000
parents 87c196d3755f
children 98e7c165d299
files TOOLS/realcodecs/14_4.c
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/TOOLS/realcodecs/14_4.c	Mon Aug 27 10:51:48 2007 +0000
+++ b/TOOLS/realcodecs/14_4.c	Mon Aug 27 10:55:27 2007 +0000
@@ -234,8 +234,8 @@
 
 ulong RAInitDecoder(ulong p1,ulong p2) {
 	ulong result;
-	int temp[256];
-	unsigned char temp2[256];
+//	int temp[256];
+//	unsigned char temp2[256];
 	fprintf(stderr, "RAInitDecoder(ulong p1=0x%0x(%d), ", p1, p1);
 	fprintf(stderr, "ulong p2=0x%0x(%d))\n", p2, p2);
 	hexdump((void*)p2, 4*7);
@@ -268,9 +268,9 @@
 }
 
 ulong RASetFlavor(ulong p1) {
-	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))\n", p1, p1);
 	hexdump((void*)p1, 44);
 //	hexdump((void*)p1, 44);