changeset 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 06540eb5ef6a
children 2cd8c5f81281
files codec-cfg.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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--)