Add missing return statement.

Approved by:	re (gjb)
MFC after:	1 week
This commit is contained in:
hselasky 2016-06-16 16:26:16 +00:00
parent 2d112dac06
commit 1ae2d37eec

View File

@ -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 */