Use LIBUSB_CALL for hidapi's read_callback function

This commit is contained in:
Ethan Lee 2020-03-11 14:17:19 -04:00
parent 2be75c6a61
commit 133b475586
1 changed files with 1 additions and 1 deletions

View File

@ -783,7 +783,7 @@ hid_device * hid_open(unsigned short vendor_id, unsigned short product_id, const
return handle;
}
static void read_callback(struct libusb_transfer *transfer)
static void LIBUSB_CALL read_callback(struct libusb_transfer *transfer)
{
hid_device *dev = (hid_device *)transfer->user_data;
int res;