diff codec-cfg.c @ 29115:1e78a310487e

Change type of first argument of the print_int_array function from int to unsigned int, fixes warnings of the type: codec-cfg.c:1031: warning: pointer targets in passing argument 1 of 'print_int_array' differ in signedness
author diego
date Thu, 09 Apr 2009 09:53:35 +0000
parents 983d33669b6b
children 0f1b5b68af32
line wrap: on
line diff
--- a/codec-cfg.c	Wed Apr 08 20:21:21 2009 +0000
+++ b/codec-cfg.c	Thu Apr 09 09:53:35 2009 +0000
@@ -957,7 +957,7 @@
         }
 }
 
-static void print_int_array(const int* a, int size)
+static void print_int_array(const unsigned int* a, int size)
 {
 	printf("{ ");
 	while (size--)