Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions mac/hid.c
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ hid_device * HID_API_EXPORT hid_open_path(const char *path)
}

/* Open the IOHIDDevice */
ret = IOHIDDeviceOpen(dev->device_handle, kIOHIDOptionsTypeSeizeDevice);
ret = IOHIDDeviceOpen(dev->device_handle, kIOHIDOptionsTypeNone);
if (ret == kIOReturnSuccess) {
char str[32];

Expand Down Expand Up @@ -1084,7 +1084,7 @@ int HID_API_EXPORT hid_get_feature_report(hid_device *dev, unsigned char *data,
}

int HID_API_EXPORT HID_API_CALL hid_get_input_report(hid_device *dev, unsigned char *data, size_t length)
{
{
return get_report(dev, kIOHIDReportTypeInput, data, length);
}

Expand Down Expand Up @@ -1120,7 +1120,7 @@ void HID_API_EXPORT hid_close(hid_device *dev)
been unplugged. If it's been unplugged, then calling
IOHIDDeviceClose() will crash. */
if (!dev->disconnected) {
IOHIDDeviceClose(dev->device_handle, kIOHIDOptionsTypeSeizeDevice);
IOHIDDeviceClose(dev->device_handle, kIOHIDOptionsTypeNone);
}

/* Clear out the queue of received reports. */
Expand Down