From: Stefan Weil Date: Sat, 17 Dec 2011 08:27:37 +0000 (+0100) Subject: configure: Fix compiler warning in config.log (value was never used) X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=55cc7f3ed228ac52ffb766ba9113c2ed88dfa846;p=qemu-xen-4.6-testing.git configure: Fix compiler warning in config.log (value was never used) Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- diff --git a/configure b/configure index e9725d448..bd6f10fa7 100755 --- a/configure +++ b/configure @@ -2269,8 +2269,7 @@ cat > $TMPC << EOF int main(void) { - int efd = eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC); - return 0; + return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC); } EOF if compile_prog "" "" ; then