[MPlayer-cvslog] r32230 - trunk/configure
diego
subversion at mplayerhq.hu
Tue Sep 14 11:47:08 CEST 2010
Author: diego
Date: Tue Sep 14 11:47:08 2010
New Revision: 32230
Log:
Fix parameter types in swab() check; fixes the warnings:
tmp.c:3: warning: null argument where non-null required (argument 1)
tmp.c:3: warning: null argument where non-null required (argument 2)
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure Tue Sep 14 11:45:40 2010 (r32229)
+++ trunk/configure Tue Sep 14 11:47:08 2010 (r32230)
@@ -3932,7 +3932,7 @@ echocheck "swab()"
cat > $TMPC << EOF
#define _XOPEN_SOURCE 600
#include <unistd.h>
-int main(void) { swab(0, 0, 0); return 0; }
+int main(void) { swab(NULL, NULL, 0); return 0; }
EOF
_swab=no
cc_check && _swab=yes
More information about the MPlayer-cvslog
mailing list