Browse Source

Use LIBUSB_CALL for hidapi's read_callback function

Ethan Lee 5 years ago
parent
commit
133b475586
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/hidapi/libusb/hid.c

+ 1 - 1
src/hidapi/libusb/hid.c

@@ -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;