diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-04-29 08:00:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-29 08:00:59 -0400 |
commit | a0f490306395ac3705c00ecc85b4a0bba721886e (patch) | |
tree | f5893498ca64b24883e8a1b9f571ea54359efad3 /include/wlr/interfaces | |
parent | 795d4071db1ae504e8f5748005513d89ec7064ea (diff) | |
parent | f8e0a034512d4c5a69dde4f5cd02df53af216b72 (diff) |
Merge pull request #926 from emersion/fix-x11-backend-memory-leaks
Fix some backend memory leaks
Diffstat (limited to 'include/wlr/interfaces')
-rw-r--r-- | include/wlr/interfaces/wlr_keyboard.h | 3 | ||||
-rw-r--r-- | include/wlr/interfaces/wlr_pointer.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/include/wlr/interfaces/wlr_keyboard.h b/include/wlr/interfaces/wlr_keyboard.h index 6960ea87..c9a13fd7 100644 --- a/include/wlr/interfaces/wlr_keyboard.h +++ b/include/wlr/interfaces/wlr_keyboard.h @@ -9,7 +9,8 @@ struct wlr_keyboard_impl { void (*led_update)(struct wlr_keyboard *keyboard, uint32_t leds); }; -void wlr_keyboard_init(struct wlr_keyboard *keyboard, struct wlr_keyboard_impl *impl); +void wlr_keyboard_init(struct wlr_keyboard *keyboard, + const struct wlr_keyboard_impl *impl); void wlr_keyboard_destroy(struct wlr_keyboard *keyboard); void wlr_keyboard_notify_key(struct wlr_keyboard *keyboard, struct wlr_event_keyboard_key *event); diff --git a/include/wlr/interfaces/wlr_pointer.h b/include/wlr/interfaces/wlr_pointer.h index af677b97..f0cf9081 100644 --- a/include/wlr/interfaces/wlr_pointer.h +++ b/include/wlr/interfaces/wlr_pointer.h @@ -8,7 +8,7 @@ struct wlr_pointer_impl { }; void wlr_pointer_init(struct wlr_pointer *pointer, - struct wlr_pointer_impl *impl); + const struct wlr_pointer_impl *impl); void wlr_pointer_destroy(struct wlr_pointer *pointer); #endif |