From 09b8d9402fc6039b60358b529b4afdaddc4a72d4 Mon Sep 17 00:00:00 2001 From: diego Date: Mon, 4 Jan 2010 21:57:13 +0000 Subject: 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 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index ce8aecb127..108ba52a45 100755 --- a/configure +++ b/configure @@ -3745,7 +3745,7 @@ cat > $TMPC << EOF #define _ISOC99_SOURCE #include #include -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 -- cgit v1.2.3