diff options
author | rathann <rathann@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-04-06 11:57:10 +0000 |
---|---|---|
committer | rathann <rathann@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-04-06 11:57:10 +0000 |
commit | e3b183dc3f56d4de72aea2d2e8b02cc4ac938922 (patch) | |
tree | eb3c8d274ba00275e797f106f34e3f5f8918037f /configure | |
parent | d621bc66d2ae9b9e3d375add71b1b45c6aa66e7f (diff) |
- fix gcc warnings, strlcat/strlcpy prototypes
- fix bad sscanf usage in geometry.c
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15059 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7058,13 +7058,13 @@ $_def_strsep /* Define this if your system has strlcpy */ $_def_strlcpy #ifndef HAVE_STRLCPY -unsigned int strlcpy (char *dest, char *src, unsigned int size); +unsigned int strlcpy (char *dest, const char *src, unsigned int size); #endif /* Define this if your system has strlcat */ $_def_strlcat #ifndef HAVE_STRLCAT -unsigned int strlcat (char *dest, char *src, unsigned int size); +unsigned int strlcat (char *dest, const char *src, unsigned int size); #endif /* Define this if your system has fseeko */ |