From 48200f2cc23633899270e7c666ac7e948ead8df1 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 26 Jan 2020 15:01:09 +0200 Subject: core: Fix build on linux Commit 7bc0ff3 left a parenthesis over which prevents succesful build. Signed-off-by: Andrey Perevortkin --- libusb/libusbi.h | 2 +- libusb/version_nano.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libusb/libusbi.h b/libusb/libusbi.h index 62246cb..6cc6f92 100644 --- a/libusb/libusbi.h +++ b/libusb/libusbi.h @@ -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; diff --git a/libusb/version_nano.h b/libusb/version_nano.h index e36b015..b691456 100644 --- a/libusb/version_nano.h +++ b/libusb/version_nano.h @@ -1 +1 @@ -#define LIBUSB_NANO 11447 +#define LIBUSB_NANO 11448 -- cgit v1.2.1