From 671619100df5f7a4a4c031c334a1f6f80cff5b92 Mon Sep 17 00:00:00 2001 From: Kyle Chisholm Date: Sun, 28 Aug 2016 21:48:09 -0400 Subject: [PATCH] remove extra semicolon I was compiling with -Werror and this little error popped up --- cores/arduino/USBCore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cores/arduino/USBCore.cpp b/cores/arduino/USBCore.cpp index ddc4812..723edb3 100644 --- a/cores/arduino/USBCore.cpp +++ b/cores/arduino/USBCore.cpp @@ -399,7 +399,7 @@ bool SendControl(u8 d) } _cmark++; return true; -}; +} // Clipped by _cmark/_cend int USB_SendControl(u8 flags, const void* d, int len)