diff options
author | Dong Xu Wang <wdongxu@linux.vnet.ibm.com> | 2011-11-29 16:52:38 +0800 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2011-12-06 09:56:41 +0000 |
commit | 3a93113a002db694657fcf24ff0c96aef83303b8 (patch) | |
tree | 0dd0d2d6691f800325c6b193d26cd9a13fe1fe08 /usb-redir.c | |
parent | 91a9ecefb6d7f066c6eecc09f7231ce7969d1817 (diff) | |
download | qemu-3a93113a002db694657fcf24ff0c96aef83303b8.zip |
fix typo: delete redundant semicolon
Double semicolons should be single.
Signed-off-by: Dong Xu Wang <wdongxu@linux.vnet.ibm.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'usb-redir.c')
-rw-r--r-- | usb-redir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usb-redir.c b/usb-redir.c index fb91c926a9..a36f2a7cda 100644 --- a/usb-redir.c +++ b/usb-redir.c @@ -542,9 +542,9 @@ static int usbredir_handle_data(USBDevice *udev, USBPacket *p) case USB_ENDPOINT_XFER_ISOC: return usbredir_handle_iso_data(dev, p, ep); case USB_ENDPOINT_XFER_BULK: - return usbredir_handle_bulk_data(dev, p, ep);; + return usbredir_handle_bulk_data(dev, p, ep); case USB_ENDPOINT_XFER_INT: - return usbredir_handle_interrupt_data(dev, p, ep);; + return usbredir_handle_interrupt_data(dev, p, ep); default: ERROR("handle_data ep %02X has unknown type %d\n", ep, dev->endpoint[EP2I(ep)].type); |