diff options
author | Tony Crisci <tony@dubstepdish.com> | 2018-01-17 08:31:15 -0500 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2018-01-17 08:31:15 -0500 |
commit | b6f29e87e85b599170a0ffd1f4c94c46c216d51a (patch) | |
tree | 819b483e84497623a7c5454f1dd0e7aef9b60f9b /include | |
parent | 43896af90fbd6c743be1e54a0659d7c0f89eaa00 (diff) |
dont use pointer for modifiers
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 b37797c8..c67cc4c2 100644 --- a/include/wlr/types/wlr_keyboard.h +++ b/include/wlr/types/wlr_keyboard.h @@ -52,7 +52,7 @@ struct wlr_keyboard { uint32_t keycodes[WLR_KEYBOARD_KEYS_CAP]; size_t num_keycodes; - struct wlr_keyboard_modifiers *modifiers; + struct wlr_keyboard_modifiers modifiers; struct { int32_t rate; |