1 Commits
v0.3 ... master

Author SHA1 Message Date
Peter Wu
b68dc9af6d ltunify: fix harmless compiler warning
bInterfaceNumber is expected to return the `%02x` format according to
the current kernel sources. Even if that is not true, a user can always
manually specify the hidraw device if the wrong device is detected.
2020-06-14 22:59:19 +02:00

View File

@@ -1214,7 +1214,10 @@ int open_hidraw(void) {
if (pid == PID_NANO_RECEIVER_2) {
int iface = -1;
if ((fp = fopen_format("/sys/class/hidraw/%s/device/../bInterfaceNumber", dev_name))) {
fscanf(fp, "%02x", &iface);
int m = fscanf(fp, "%02x", &iface);
if (m != 1) {
iface = -1;
}
fclose(fp);
}
if (iface == 0) {