From: aliguori Date: Mon, 15 Sep 2008 16:48:11 +0000 (+0000) Subject: Make sure to define fd_open when not on Linux X-Git-Tag: stefano.display-merge-start~558 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=08af02e25b3925f07ea236536955d40977661918;p=qemu-xen-4.3-testing.git Make sure to define fd_open when not on Linux My previous commit broke the build. This was spotted by C.W. Betts. Signed-off-by: Anthony Liguori git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5231 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/block-raw-posix.c b/block-raw-posix.c index e314f4ae4..833907186 100644 --- a/block-raw-posix.c +++ b/block-raw-posix.c @@ -1149,6 +1149,11 @@ static int raw_ioctl(BlockDriverState *bs, unsigned long int req, void *buf) } #else +static int fd_open(BlockDriverState *bs) +{ + return 0; +} + static int raw_is_inserted(BlockDriverState *bs) { return 1;