1
mirror of https://github.com/mpv-player/mpv synced 2024-07-15 22:21:38 +02:00

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
This commit is contained in:
diego 2009-04-09 09:53:35 +00:00
parent ca242e5f73
commit e0b6d5d6c8

View File

@ -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--)