From e0b6d5d6c8c553de0b65d60d9d24eb1df97bc2b3 Mon Sep 17 00:00:00 2001 From: diego Date: Thu, 9 Apr 2009 09:53:35 +0000 Subject: [PATCH] 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 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29155 b3059339-0415-0410-9bf9-f77b7e298cf2 --- codec-cfg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codec-cfg.c b/codec-cfg.c index 2ba7fe60de..cfbf3b005b 100644 --- a/codec-cfg.c +++ b/codec-cfg.c @@ -957,7 +957,7 @@ void skiphtml(FILE *f1){ } } -static void print_int_array(const int* a, int size) +static void print_int_array(const unsigned int* a, int size) { printf("{ "); while (size--)