diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2011-09-21 09:34:12 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2011-09-21 11:34:43 +0200 |
commit | 8e72506e20d9e606783de1cdb8d60dd9b9241e30 (patch) | |
tree | b58bb0f8a2cfb4ac73cae63296006eb96ad68a93 | |
parent | 27cdad67a1bc23b38c765b677ed8064bfb8d3e44 (diff) | |
download | qemu-8e72506e20d9e606783de1cdb8d60dd9b9241e30.tar.gz qemu-8e72506e20d9e606783de1cdb8d60dd9b9241e30.tar.bz2 qemu-8e72506e20d9e606783de1cdb8d60dd9b9241e30.zip |
nbd: fix non-Linux build failure
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rw-r--r-- | nbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -439,7 +439,7 @@ int nbd_client(int fd) return ret; } #else -int nbd_init(int fd, int csock, off_t size, size_t blocksize) +int nbd_init(int fd, int csock, uint32_t flags, off_t size, size_t blocksize) { errno = ENOTSUP; return -1; |