diff options
author | Stefan Weil | 2011-12-17 09:27:36 +0100 |
---|---|---|
committer | Stefan Hajnoczi | 2011-12-19 12:03:42 +0100 |
commit | ffc41d10b01b9c72a7dd412b271164530c14bdb8 (patch) | |
tree | 6b815f999faf09f82cc828b0fb352997c3752ecb /configure | |
parent | configure: Fix compiler warnings in config.log (uninitialized variable) (diff) | |
download | qemu-ffc41d10b01b9c72a7dd412b271164530c14bdb8.tar.gz qemu-ffc41d10b01b9c72a7dd412b271164530c14bdb8.tar.xz qemu-ffc41d10b01b9c72a7dd412b271164530c14bdb8.zip |
configure: Fix compiler warning in config.log (undefined NULL)
Avoid the warning when probing for xfs.
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 | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1670,6 +1670,7 @@ fi # xfsctl() probe, used for raw-posix if test "$xfs" != "no" ; then cat > $TMPC << EOF +#include <stddef.h> /* NULL */ #include <xfs/xfs.h> int main(void) { |