[MPlayer-cvslog] CVS: main configure,1.976,1.977
Dominik Mierzejewski CVS
syncmail at mplayerhq.hu
Wed Apr 6 13:57:11 CEST 2005
CVS change done by Dominik Mierzejewski CVS
Update of /cvsroot/mplayer/main
In directory mail:/var2/tmp/cvs-serv9436
Modified Files:
configure
Log Message:
- fix gcc warnings, strlcat/strlcpy prototypes
- fix bad sscanf usage in geometry.c
Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.976
retrieving revision 1.977
diff -u -r1.976 -r1.977
--- configure 23 Mar 2005 10:07:00 -0000 1.976
+++ configure 6 Apr 2005 11:57:08 -0000 1.977
@@ -7058,13 +7058,13 @@
/* 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 */
More information about the MPlayer-cvslog
mailing list