[librvth] query_udev.c, rvth_listener_thread(): Missing 'pErr' parameter.

This commit is contained in:
David Korth 2022-07-14 02:28:18 -04:00
parent f588ffd8c2
commit 484efeeec9

View File

@ -439,7 +439,7 @@ static void *rvth_listener_thread(void *listener_arg)
if (!strcmp(action, "add")) {
// Device added.
RvtH_QueryEntry *const entry = rvth_parse_udev_device(dev);
RvtH_QueryEntry *const entry = rvth_parse_udev_device(dev, NULL);
if (entry) {
listener->callback(listener, entry, RVTH_LISTEN_CONNECTED, listener->userdata);
rvth_query_free(entry);