virtio-9p: Fix syntax error in debug code
authorStefan Weil <weil@mail.berlios.de>
Wed, 20 Jul 2011 06:27:28 +0000 (08:27 +0200)
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Fri, 9 Sep 2011 08:51:07 +0000 (09:51 +0100)
This error was reported by cppcheck:

qemu/hw/9pfs/virtio-9p-debug.c:342:
error: Invalid number of character ({) when these macros are defined:
'DEBUG_DATA'.

Cc: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
hw/9pfs/virtio-9p-debug.c

index 4636ad5..96925f0 100644 (file)
@@ -295,7 +295,7 @@ static void pprint_data(V9fsPDU *pdu, int rx, size_t *offsetp, const char *name)
 
     if (rx) {
         count = pdu->elem.in_num;
-    } else
+    } else {
         count = pdu->elem.out_num;
     }