From dd5ff8f79d1e60ada2a81bb4edc36dfacaa4244a Mon Sep 17 00:00:00 2001 From: Vadim Mikhailov Date: Thu, 22 Sep 2022 11:09:24 -0700 Subject: Fix unused variable compilation warning on non Linux platforms --- uhubctl.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/uhubctl.c b/uhubctl.c index 9c99ebe..7bc1532 100644 --- a/uhubctl.c +++ b/uhubctl.c @@ -546,8 +546,8 @@ static int set_port_status_linux(struct libusb_device_handle *devh, struct hub_i int disable_fd = open(disable_path, O_WRONLY); if (disable_fd >= 0) { - rc = write(disable_fd, on ? "0" : "1", 1); - close(disable_fd); + rc = write(disable_fd, on ? "0" : "1", 1); + close(disable_fd); } if (disable_fd < 0 || rc < 0) { @@ -616,6 +616,8 @@ static int set_port_status(struct libusb_device_handle *devh, struct hub_info *h return 0; } } +#else + (void)hub; #endif return set_port_status_libusb(devh, port, on); -- cgit v1.2.3