aboutsummaryrefslogtreecommitdiff
path: root/cores
diff options
context:
space:
mode:
authorKyle Chisholm <ChisholmKyle@users.noreply.github.com>2016-08-28 21:48:09 -0400
committerGitHub <noreply@github.com>2016-08-28 21:48:09 -0400
commit671619100df5f7a4a4c031c334a1f6f80cff5b92 (patch)
treee74d6f85fa6637bb63aa2a1cb5383bd2d700044f /cores
parent04713212a845d690de6d8c85724337a422c76dde (diff)
remove extra semicolon
I was compiling with -Werror and this little error popped up
Diffstat (limited to 'cores')
-rw-r--r--cores/arduino/USBCore.cpp2
1 files changed, 1 insertions, 1 deletions
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)