summaryrefslogtreecommitdiffstats
path: root/codec-cfg.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-04-09 09:53:35 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-04-09 09:53:35 +0000
commite0b6d5d6c8c553de0b65d60d9d24eb1df97bc2b3 (patch)
treee573881098becc56f9f2970cc1a8f6dc759b8b61 /codec-cfg.c
parentca242e5f73d3bff1006b373b123b4749a33f5bd7 (diff)
downloadmpv-e0b6d5d6c8c553de0b65d60d9d24eb1df97bc2b3.tar.bz2
mpv-e0b6d5d6c8c553de0b65d60d9d24eb1df97bc2b3.tar.xz
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
Diffstat (limited to 'codec-cfg.c')
-rw-r--r--codec-cfg.c2
1 files changed, 1 insertions, 1 deletions
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--)