From a3d81a8a8a4f8379b0870238ae417f7986d7d299 Mon Sep 17 00:00:00 2001 From: Hans Petter Selasky Date: Thu, 16 Jun 2016 16:26:16 +0000 Subject: [PATCH] Add missing return statement. Approved by: re (gjb) MFC after: 1 week --- lib/libusb/libusb10.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/libusb/libusb10.c b/lib/libusb/libusb10.c index 7e1d9b6d01e..7b336c9b15f 100644 --- a/lib/libusb/libusb10.c +++ b/lib/libusb/libusb10.c @@ -890,6 +890,7 @@ int libusb_set_auto_detach_kernel_driver(libusb_device_handle *dev, int enable) { dev->auto_detach = (enable ? 1 : 0); + return (0); } /* Asynchronous device I/O */