diff options
author | Kyle Chisholm <ChisholmKyle@users.noreply.github.com> | 2016-08-28 21:48:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-28 21:48:09 -0400 |
commit | 671619100df5f7a4a4c031c334a1f6f80cff5b92 (patch) | |
tree | e74d6f85fa6637bb63aa2a1cb5383bd2d700044f /cores | |
parent | 04713212a845d690de6d8c85724337a422c76dde (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.cpp | 2 |
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) |