diff options
| author | Simon Zeni <simon@bl4ckb0ne.ca> | 2022-02-09 15:53:42 -0500 |
|---|---|---|
| committer | Simon Zeni <simon@bl4ckb0ne.ca> | 2022-02-21 13:53:40 -0500 |
| commit | 1acc931cf0f4de6b4402a70f1343f14df4d83347 (patch) | |
| tree | 7ef4e7425e4a55caeaaea4972632a53a9d77e1f1 /include/wlr/interfaces | |
| parent | f1181c34ed3c3dd80299d634de062c4f2d731bac (diff) | |
| download | wlroots-1acc931cf0f4de6b4402a70f1343f14df4d83347.tar.xz | |
types/wlr_switch: constify impl
Diffstat (limited to 'include/wlr/interfaces')
| -rw-r--r-- | include/wlr/interfaces/wlr_switch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/interfaces/wlr_switch.h b/include/wlr/interfaces/wlr_switch.h index cce55f98..fbf5e6cb 100644 --- a/include/wlr/interfaces/wlr_switch.h +++ b/include/wlr/interfaces/wlr_switch.h @@ -16,7 +16,7 @@ struct wlr_switch_impl { }; void wlr_switch_init(struct wlr_switch *switch_device, - struct wlr_switch_impl *impl, const char *name); + const struct wlr_switch_impl *impl, const char *name); void wlr_switch_destroy(struct wlr_switch *switch_device); #endif |
