From cec90e144aa3fc49c892fa9cf89b19f3d5cc4258 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 27 Apr 2015 12:26:40 -0600 Subject: [PATCH] Another missing semicolon in a DEBUGASSERT statement --- drivers/usbhost/usbhost_storage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usbhost/usbhost_storage.c b/drivers/usbhost/usbhost_storage.c index 04ee1baafe..04dac59907 100644 --- a/drivers/usbhost/usbhost_storage.c +++ b/drivers/usbhost/usbhost_storage.c @@ -1605,7 +1605,7 @@ static FAR struct usbmsc_cbw_s *usbhost_cbwalloc(FAR struct usbhost_state_s *pri { FAR struct usbmsc_cbw_s *cbw = NULL; - DEBUGASSERT(priv->tbuffer && priv->tbuflen >= sizeof(struct usbmsc_cbw_s)) + DEBUGASSERT(priv->tbuffer && priv->tbuflen >= sizeof(struct usbmsc_cbw_s)); /* Initialize the CBW sructure */