[channel,urbdrc] fix type of usb hotplug callback

The libusb_hotplug_callback_fn uses LIBUSB_CALL call type

(cherry picked from commit c9b806ba47)
This commit is contained in:
Armin Novak 2022-12-07 09:59:59 +01:00 committed by akallabeth
parent f5c2485df2
commit 2466ddad84
1 changed files with 2 additions and 2 deletions

View File

@ -581,8 +581,8 @@ static BOOL device_is_filtered(struct libusb_device* dev,
return filtered;
}
static int hotplug_callback(struct libusb_context* ctx, struct libusb_device* dev,
libusb_hotplug_event event, void* user_data)
static int LIBUSB_CALL hotplug_callback(struct libusb_context* ctx, struct libusb_device* dev,
libusb_hotplug_event event, void* user_data)
{
VID_PID_PAIR pair;
struct libusb_device_descriptor desc;