[MPlayer-cvslog] r29155 - trunk/codec-cfg.c

diego subversion at mplayerhq.hu
Thu Apr 9 11:53:36 CEST 2009


Author: diego
Date: Thu Apr  9 11:53:35 2009
New Revision: 29155

Log:
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

Modified:
   trunk/codec-cfg.c

Modified: trunk/codec-cfg.c
==============================================================================
--- trunk/codec-cfg.c	Wed Apr  8 22:21:21 2009	(r29154)
+++ trunk/codec-cfg.c	Thu Apr  9 11:53:35 2009	(r29155)
@@ -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--)


More information about the MPlayer-cvslog mailing list