mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-12-23 18:39:48 +01:00
backend/wayland: close keymap FD
We don't actually need the keymap. We need to close the FD or we will run out of FDs.
This commit is contained in:
parent
5ee52a3ab9
commit
b614ded3fc
1 changed files with 2 additions and 1 deletions
|
@ -5,6 +5,7 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
#include <wayland-client.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,
|
static void keyboard_handle_keymap(void *data, struct wl_keyboard *wl_keyboard,
|
||||||
uint32_t format, int32_t fd, uint32_t size) {
|
uint32_t format, int32_t fd, uint32_t size) {
|
||||||
// TODO: set keymap
|
close(fd);
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint32_t get_current_time_msec(void) {
|
static uint32_t get_current_time_msec(void) {
|
||||||
|
|
Loading…
Reference in a new issue