From e279266f714c7122e9ad97d56d047313f78cfdbe Mon Sep 17 00:00:00 2001 From: Simon Zeni Date: Wed, 9 Feb 2022 16:14:56 -0500 Subject: interfaces: remove wlr_input_device_impl --- backend/libinput/events.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'backend/libinput') diff --git a/backend/libinput/events.c b/backend/libinput/events.c index 67ca49d5..e8d99f25 100644 --- a/backend/libinput/events.c +++ b/backend/libinput/events.c @@ -4,7 +4,6 @@ #include #include #include -#include #include #include "backend/libinput.h" #include "util/array.h" @@ -63,7 +62,7 @@ static struct wlr_input_device *allocate_device( wl_list_insert(wlr_devices, &dev->link); dev->handle = libinput_dev; libinput_device_ref(libinput_dev); - wlr_input_device_init(wlr_dev, type, NULL, name); + wlr_input_device_init(wlr_dev, type, name); wlr_dev->vendor = libinput_device_get_id_vendor(libinput_dev); wlr_dev->product = libinput_device_get_id_product(libinput_dev); return wlr_dev; -- cgit v1.2.3