aboutsummaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
Diffstat (limited to 'backend')
-rw-r--r--backend/wayland/seat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/backend/wayland/seat.c b/backend/wayland/seat.c
index edb690b8..b995dbe5 100644
--- a/backend/wayland/seat.c
+++ b/backend/wayland/seat.c
@@ -5,6 +5,7 @@
#include <stdlib.h>
#include <string.h>
#include <time.h>
+#include <unistd.h>
#include <wayland-client.h>
@@ -193,7 +194,7 @@ static const struct wl_pointer_listener pointer_listener = {
static void keyboard_handle_keymap(void *data, struct wl_keyboard *wl_keyboard,
uint32_t format, int32_t fd, uint32_t size) {
- // TODO: set keymap
+ close(fd);
}
static uint32_t get_current_time_msec(void) {