From 593b1fbb5ec7994d00adacd0cfee407ced2691c3 Mon Sep 17 00:00:00 2001 From: Denis Date: Sun, 5 Nov 2023 23:38:08 +0100 Subject: [PATCH] whoops --- input_dev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input_dev.c b/input_dev.c index 5564872..2f56e15 100644 --- a/input_dev.c +++ b/input_dev.c @@ -181,7 +181,7 @@ void *input_dev_thread_func(void *ptr) { pthread_t incoming_events_thread; - const int incoming_events_thread_creation = pthread_create(&incoming_events_thread, NULL, input_dev_thread_func, (void*)dev); + const int incoming_events_thread_creation = pthread_create(&incoming_events_thread, NULL, input_read_thread_func, (void*)dev); if (incoming_events_thread_creation != 0) { fprintf(stderr, "Error creating the input thread for device %s: %d\n", libevdev_get_name(dev), incoming_events_thread_creation); }