Commit aff08c7e authored by Alexandre Julliard's avatar Alexandre Julliard

winebus.sys: Fix a typo in find_device_from_iohid().

parent 4b28a061
......@@ -127,7 +127,7 @@ static struct platform_private *find_device_from_iohid(IOHIDDeviceRef IOHIDDevic
struct platform_private *private;
LIST_FOR_EACH_ENTRY(private, &device_list, struct platform_private, unix_device.entry)
if (!private->device == IOHIDDevice) return private;
if (private->device == IOHIDDevice) return private;
return NULL;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment