| Submitter | Amit Shah |
|---|---|
| Date | Dec. 10, 2010, 3:25 p.m. |
| Message ID | <97b309bfeb2b7e588301ff5d046491a46a58f6b8.1291994656.git.amit.shah@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/75107/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/hw/virtio-console.c b/hw/virtio-console.c index d7fe68b..d0b9354 100644 --- a/hw/virtio-console.c +++ b/hw/virtio-console.c @@ -48,10 +48,9 @@ static void chr_event(void *opaque, int event) VirtConsole *vcon = opaque; switch (event) { - case CHR_EVENT_OPENED: { + case CHR_EVENT_OPENED: virtio_serial_open(&vcon->port); break; - } case CHR_EVENT_CLOSED: virtio_serial_close(&vcon->port); break;
Remove unnecessary braces around a case statement. Signed-off-by: Amit Shah <amit.shah@redhat.com> --- hw/virtio-console.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-)