core: Fix build on linux
authorroot <asavah@avh.od.ua>
Sun, 26 Jan 2020 13:01:09 +0000 (15:01 +0200)
committerLudovic Rousseau <ludovic.rousseau@free.fr>
Sun, 26 Jan 2020 13:25:28 +0000 (14:25 +0100)
Commit 7bc0ff3 left a parenthesis over which prevents succesful build.

Signed-off-by: Andrey Perevortkin <asavah@avh.od.ua>
libusb/libusbi.h
libusb/version_nano.h

index 62246cb..6cc6f92 100644 (file)
@@ -410,7 +410,7 @@ static inline int usbi_pending_events(struct libusb_context *ctx)
 static inline int usbi_using_timerfd(struct libusb_context *ctx)
 {
 #ifdef HAVE_TIMERFD
-       return ctx->timerfd >= 0);
+       return ctx->timerfd >= 0;
 #else
        UNUSED(ctx);
        return 0;
index e36b015..b691456 100644 (file)
@@ -1 +1 @@
-#define LIBUSB_NANO 11447
+#define LIBUSB_NANO 11448