This commit is contained in:
Denis 2023-12-08 00:00:33 +01:00
parent 66bc4ac457
commit f2b411286c
No known key found for this signature in database
GPG key ID: DD9B63F805CF5C03

View file

@ -17,6 +17,7 @@ static bool ev_matches(struct libevdev *dev, const uinput_filters_t* const filte
const char* name = libevdev_get_name(dev);
if ((name != NULL) && (strcmp(name, filters->name) != 0)) {
printf("%s does not match %s", name, filters->name);
return false;
}