From 59cd950be143bf9ff3f67c3a051757216f0b9933 Mon Sep 17 00:00:00 2001 From: imp Date: Thu, 17 Aug 2006 22:42:56 +0000 Subject: [PATCH] Don't put a ; after while (0) Submitted by: jmg --- sys/dev/usb/usb_port.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/usb/usb_port.h b/sys/dev/usb/usb_port.h index 296126e02269..9b2ddf244abd 100644 --- a/sys/dev/usb/usb_port.h +++ b/sys/dev/usb/usb_port.h @@ -437,7 +437,7 @@ typedef struct callout usb_callout_t; device_detach(dev); \ free(uaap, M_USB); \ device_delete_child(device_get_parent(dev), dev); \ - } while (0); + } while (0) typedef struct malloc_type *usb_malloc_type; @@ -493,7 +493,7 @@ __CONCAT(dname,_attach)(device_t self) do { \ sc->sc_dev = self; \ device_set_desc_copy(self, devinfo); \ - } while (0); + } while (0) #define USB_DETACH(dname) \ Static int \