summaryrefslogtreecommitdiffstats
path: root/libvo/vo_png.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-01 13:18:49 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-01 13:18:49 +0000
commitf102ac7a8c62491761b7b3d32baa87dcb665f9ed (patch)
tree27ad6e8e197f81258631b4b86b3938c870e35a84 /libvo/vo_png.c
parent5f684e1b32cc052edf33d8c0ff5ead106e98e680 (diff)
downloadmpv-f102ac7a8c62491761b7b3d32baa87dcb665f9ed.tar.bz2
mpv-f102ac7a8c62491761b7b3d32baa87dcb665f9ed.tar.xz
Fix function declarations to avoid casting function pointers.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30164 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_png.c')
-rw-r--r--libvo/vo_png.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libvo/vo_png.c b/libvo/vo_png.c
index 8110f859df..e404785736 100644
--- a/libvo/vo_png.c
+++ b/libvo/vo_png.c
@@ -283,8 +283,9 @@ static void uninit(void){
static void check_events(void){}
-static int int_zero_to_nine(int *sh)
+static int int_zero_to_nine(void *value)
{
+ int *sh = value;
if ( (*sh < 0) || (*sh > 9) )
return 0;
return 1;
@@ -292,7 +293,7 @@ static int int_zero_to_nine(int *sh)
static const opt_t subopts[] = {
{"alpha", OPT_ARG_BOOL, &use_alpha, NULL},
- {"z", OPT_ARG_INT, &z_compression, (opt_test_f)int_zero_to_nine},
+ {"z", OPT_ARG_INT, &z_compression, int_zero_to_nine},
{"outdir", OPT_ARG_MSTRZ, &png_outdir, NULL},
{NULL}
};