Pass a proper va_list type to vsscanf() test in configure.

This fixes the check on SuperH with CodeSourcery compilers.
patch by Bill Traynor, wmat naoi ca


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30219 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2010-01-04 21:57:13 +00:00
parent 5e1b88a019
commit 09b8d9402f
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -3745,7 +3745,7 @@ cat > $TMPC << EOF
#define _ISOC99_SOURCE
#include <stdarg.h>
#include <stdio.h>
int main(void) { vsscanf(0, 0, 0); return 0; }
int main(void) { va_list ap; vsscanf(0, 0, ap); return 0; }
EOF
_vsscanf=no
cc_check && _vsscanf=yes