summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorrathann <rathann@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-04-06 11:57:10 +0000
committerrathann <rathann@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-04-06 11:57:10 +0000
commite3b183dc3f56d4de72aea2d2e8b02cc4ac938922 (patch)
treeeb3c8d274ba00275e797f106f34e3f5f8918037f /configure
parentd621bc66d2ae9b9e3d375add71b1b45c6aa66e7f (diff)
downloadmpv-e3b183dc3f56d4de72aea2d2e8b02cc4ac938922.tar.bz2
mpv-e3b183dc3f56d4de72aea2d2e8b02cc4ac938922.tar.xz
- 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-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 8d65993e09..2e9484c75f 100755
--- a/configure
+++ b/configure
@@ -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 */