Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thirdpin/libopencm3.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Stolyarov <i.stolyarov@thirdpin.ru>2019-10-24 12:03:36 +0300
committerIlya Stolyarov <i.stolyarov@thirdpin.ru>2019-10-24 12:03:36 +0300
commit608de5b681ea7d57cec094200919a1256aacf144 (patch)
tree9c4dc5a20ffa49376cf5dfe0f655306866a764da
parent5c14985218ef172b28ad3847f494b378865a48f3 (diff)
FIX: [usb] Forgotten #endif
-rw-r--r--lib/usb/usb_private.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/usb/usb_private.h b/lib/usb/usb_private.h
index a7ebbb9a..59f1277d 100644
--- a/lib/usb/usb_private.h
+++ b/lib/usb/usb_private.h
@@ -43,6 +43,7 @@ LGPL License Terms @ref lgpl_license
#ifndef ENDPOINT_COUNT
#define ENDPOINT_COUNT 4
+#endif
#define MIN(a, b) ((a) < (b) ? (a) : (b))