diff options
author | emersion <contact@emersion.fr> | 2018-09-18 10:58:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-18 10:58:38 +0200 |
commit | 9288c827aaf4ae8acac7a105f223dc612822b76d (patch) | |
tree | b3d6377f125d6059fc34117654fc218665f31770 /include | |
parent | 50a8758313ced79221c67890dde153a5884db76f (diff) | |
parent | 40a43003a137ca53ccc19256fdc8847d28ee6148 (diff) |
Merge pull request #1249 from arandomhuman/keymap_fd
Send unique keymap file descriptors
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_keyboard.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/types/wlr_keyboard.h b/include/wlr/types/wlr_keyboard.h index 3e207523..ae279541 100644 --- a/include/wlr/types/wlr_keyboard.h +++ b/include/wlr/types/wlr_keyboard.h @@ -50,7 +50,7 @@ struct wlr_keyboard_modifiers { struct wlr_keyboard { const struct wlr_keyboard_impl *impl; - int keymap_fd; + char *keymap_string; size_t keymap_size; struct xkb_keymap *keymap; struct xkb_state *xkb_state; |