diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-07 18:22:35 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-07 18:22:35 +0000 |
commit | 7442511ca141c67a20e85dec34b206cb413479d7 (patch) | |
tree | 855be4e1da2d19bb1024e61309885838cc9cd282 /hw/bt-hid.c | |
parent | 856ae5c3324abb8fe6d905262e1cc9f4437e719f (diff) | |
download | qemu-7442511ca141c67a20e85dec34b206cb413479d7.zip |
Don't try to return result from a void function (spotted by Sparse)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7017 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/bt-hid.c')
-rw-r--r-- | hw/bt-hid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/bt-hid.c b/hw/bt-hid.c index 3317ecc03c..af0c3d5f28 100644 --- a/hw/bt-hid.c +++ b/hw/bt-hid.c @@ -383,7 +383,7 @@ static void bt_hid_control_sdu(void *opaque, const uint8_t *data, int len) { struct bt_hid_device_s *hid = opaque; - return bt_hid_control_transaction(hid, data, len); + bt_hid_control_transaction(hid, data, len); } static void bt_hid_datain(void *opaque) |