diff options
Diffstat (limited to 'include/wlr/interfaces')
-rw-r--r-- | include/wlr/interfaces/wlr_switch.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/wlr/interfaces/wlr_switch.h b/include/wlr/interfaces/wlr_switch.h index 0b0454f5..83a1365b 100644 --- a/include/wlr/interfaces/wlr_switch.h +++ b/include/wlr/interfaces/wlr_switch.h @@ -12,11 +12,11 @@ #include <wlr/types/wlr_switch.h> struct wlr_switch_impl { - void (*destroy)(struct wlr_switch *lid_switch); + void (*destroy)(struct wlr_switch *switch_device); }; -void wlr_switch_init(struct wlr_switch *lid_switch, +void wlr_switch_init(struct wlr_switch *switch_device, struct wlr_switch_impl *impl); -void wlr_switch_destroy(struct wlr_switch *lid_switch); +void wlr_switch_destroy(struct wlr_switch *switch_device); #endif |