commit | 55cc7f3ed228ac52ffb766ba9113c2ed88dfa846 | [log] [tgz] |
---|---|---|
author | Stefan Weil <[email protected]> | Sat Dec 17 09:27:37 2011 +0100 |
committer | Stefan Hajnoczi <[email protected]> | Mon Dec 19 11:03:43 2011 +0000 |
tree | 944e2f01c38e073cd19d6a64b8b6c7bc8effddc3 | |
parent | ffc41d10b01b9c72a7dd412b271164530c14bdb8 [diff] [blame] |
configure: Fix compiler warning in config.log (value was never used) Signed-off-by: Stefan Weil <[email protected]> Signed-off-by: Stefan Hajnoczi <[email protected]>
diff --git a/configure b/configure index e9725d4..bd6f10f 100755 --- a/configure +++ b/configure
@@ -2269,8 +2269,7 @@ 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