From b23e7193befa3fc29cbfa5ade5f8b71e82c27e50 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 --- hardware/arduino/avr/cores/arduino/USBCore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardware/arduino/avr/cores/arduino/USBCore.cpp b/hardware/arduino/avr/cores/arduino/USBCore.cpp index ddc4812ec..723edb3c8 100644 --- a/hardware/arduino/avr/cores/arduino/USBCore.cpp +++ b/hardware/arduino/avr/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)