diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-09-18 19:32:11 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-09-18 19:32:11 +0000 |
commit | e2731add29e3c74a472dcb81f90bf9aa14f4b8e1 (patch) | |
tree | ba052b51a0dd9e056b6536f9966f3380118fb9fa /block.c | |
parent | c9a621176e479b8106056ed992fddf34d9d0d206 (diff) |
fixed block close() method prototype
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1068 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'block.c')
-rw-r--r-- | block.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -554,7 +554,7 @@ static int raw_write(BlockDriverState *bs, int64_t sector_num, return 0; } -static int raw_close(BlockDriverState *bs) +static void raw_close(BlockDriverState *bs) { BDRVRawState *s = bs->opaque; close(s->fd); |