diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-01-01 13:18:49 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-01-01 13:18:49 +0000 |
commit | f102ac7a8c62491761b7b3d32baa87dcb665f9ed (patch) | |
tree | 27ad6e8e197f81258631b4b86b3938c870e35a84 /subopt-helper.h | |
parent | 5f684e1b32cc052edf33d8c0ff5ead106e98e680 (diff) | |
download | mpv-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 'subopt-helper.h')
-rw-r--r-- | subopt-helper.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subopt-helper.h b/subopt-helper.h index 18c6b4bf86..ec8ff7f378 100644 --- a/subopt-helper.h +++ b/subopt-helper.h @@ -38,8 +38,8 @@ typedef struct strarg_s } strarg_t; -int int_non_neg( int * i ); -int int_pos( int * i ); +int int_non_neg(void *iptr); +int int_pos(void *iptr); int strargcmp(strarg_t *arg, const char *str); int strargcasecmp(strarg_t *arg, char *str); |