diff options
author | Stefan Weil | 2011-12-17 09:27:30 +0100 |
---|---|---|
committer | Stefan Hajnoczi | 2011-12-19 12:03:42 +0100 |
commit | 182eacc0fdd860ac60fa6fcf40429caa15e8328a (patch) | |
tree | 719fd52a22f541541bc5922f62a4b20fe9f1ae95 /configure | |
parent | configure: Fix compiler warnings in config.log (always return a value from main) (diff) | |
download | qemu-182eacc0fdd860ac60fa6fcf40429caa15e8328a.tar.gz qemu-182eacc0fdd860ac60fa6fcf40429caa15e8328a.tar.xz qemu-182eacc0fdd860ac60fa6fcf40429caa15e8328a.zip |
configure: Fix compiler warnings in config.log (old-style function definition)
warning: function declaration isn’t a prototype
In function ‘foo’:
warning: old-style function definition
The function name was changed, too, to avoid an additional warning.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1274,11 +1274,11 @@ if test "$nptl" != "no" ; then cat > $TMPC <<EOF #include <sched.h> #include <linux/futex.h> -void foo() -{ +int main(void) { #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT) #error bork #endif + return 0; } EOF |