From e3b183dc3f56d4de72aea2d2e8b02cc4ac938922 Mon Sep 17 00:00:00 2001 From: rathann Date: Wed, 6 Apr 2005 11:57:10 +0000 Subject: - 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 --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configure') 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 */ -- cgit v1.2.3