# HG changeset patch # User diego # Date 1239270815 0 # Node ID 1e78a310487e241f067768dfd151544e3b5aee72 # Parent 06540eb5ef6aba00c58730d07afcc5b736a577d0 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 diff -r 06540eb5ef6a -r 1e78a310487e codec-cfg.c --- 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--)