diff options
author | Markus Ongyerth <ongy@ongy.net> | 2019-07-14 06:48:22 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2019-09-26 19:41:19 +0300 |
commit | ebeef0fbe8b15fceb618ee5bc6947d1c3edf950f (patch) | |
tree | 6d4cca5608bfeee2914b322b355de4e2f23ceaa5 /include/wlr | |
parent | 2285e36b0c10db31ecaaf1130c24d3170c54583f (diff) |
Clean up wayland backend tablet support
Mostly address feedback from emersion on PR #1694
Remove const qualifier from char *name, to allow free() call
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_tablet_tool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/types/wlr_tablet_tool.h b/include/wlr/types/wlr_tablet_tool.h index bd797915..805727d4 100644 --- a/include/wlr/types/wlr_tablet_tool.h +++ b/include/wlr/types/wlr_tablet_tool.h @@ -70,7 +70,7 @@ struct wlr_tablet { struct wl_signal button; } events; - const char *name; + char *name; struct wlr_list paths; // char * void *data; |