aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2009-04-17 13:50:32 +0000
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2009-04-17 13:50:32 +0000
commit8690e42010a645dfede7779be2d3013bfc453966 (patch)
tree33c67f203932e6a9a6518a8181b4d2fcc383a135 /configure
parent8c0ab41f4abdd2e7f47a5cf54a242573e09b96e2 (diff)
downloadqemu-8690e42010a645dfede7779be2d3013bfc453966.zip
qemu-8690e42010a645dfede7779be2d3013bfc453966.tar.gz
qemu-8690e42010a645dfede7779be2d3013bfc453966.tar.bz2
linux-user: fix inotify syscalls
Configure test was broken, so the breakage of the #ifdef'd code was not noticed. Signed-off-by: Riku Voipio <riku.voipio@iki.fi> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7134 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 4035bfc..af35713 100755
--- a/configure
+++ b/configure
@@ -1195,7 +1195,7 @@ int
main(void)
{
/* try to start inotify */
- return inotify_init(void);
+ return inotify_init();
}
EOF
if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then