From 847d2b4218146a2e6566a47636b1b3a9b86c59ba Mon Sep 17 00:00:00 2001 From: Janne Rosberg Date: Tue, 18 Oct 2016 11:52:23 -0600 Subject: [PATCH] usbhost/composite: fix compile; missing semicolons --- drivers/usbhost/usbhost_composite.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/usbhost/usbhost_composite.c b/drivers/usbhost/usbhost_composite.c index 42ad0bf030..64ce014250 100644 --- a/drivers/usbhost/usbhost_composite.c +++ b/drivers/usbhost/usbhost_composite.c @@ -641,7 +641,7 @@ int usbhost_composite(FAR struct usbhost_hubport_s *hport, if (priv == NULL) { - uerr("ERROR: Failed to allocate class container\n") + uerr("ERROR: Failed to allocate class container\n"); return -ENOMEM; } @@ -650,7 +650,7 @@ int usbhost_composite(FAR struct usbhost_hubport_s *hport, if (priv->members == NULL) { - uerr("ERROR: Failed to allocate class members\n") + uerr("ERROR: Failed to allocate class members\n"); ret = -ENOMEM; goto errout_with_container; }