aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/util/addon.h
diff options
context:
space:
mode:
authorKirill Primak <vyivel@eclair.cafe>2022-05-16 20:35:31 +0300
committerSimon Ser <contact@emersion.fr>2022-05-23 11:11:38 +0000
commit4ac19e9f9cf38bc146ba42cc7ce89b29e748b30f (patch)
treebf9e104f9dbff02aa863140991edb7d2422fea29 /include/wlr/util/addon.h
parentcde3700386cc967a9c0805a07310b35e56974440 (diff)
util/addon: avoid calling finish() twice
No functional change.
Diffstat (limited to 'include/wlr/util/addon.h')
-rw-r--r--include/wlr/util/addon.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/wlr/util/addon.h b/include/wlr/util/addon.h
index 382252ae..c64200cf 100644
--- a/include/wlr/util/addon.h
+++ b/include/wlr/util/addon.h
@@ -20,6 +20,7 @@ struct wlr_addon;
struct wlr_addon_interface {
const char *name;
+ // Has to call wlr_addon_finish()
void (*destroy)(struct wlr_addon *addon);
};
@@ -34,10 +35,10 @@ void wlr_addon_set_init(struct wlr_addon_set *set);
void wlr_addon_set_finish(struct wlr_addon_set *set);
void wlr_addon_init(struct wlr_addon *addon, struct wlr_addon_set *set,
- const void *owner, const struct wlr_addon_interface *impl);
+ const void *owner, const struct wlr_addon_interface *impl);
void wlr_addon_finish(struct wlr_addon *addon);
struct wlr_addon *wlr_addon_find(struct wlr_addon_set *set, const void *owner,
- const struct wlr_addon_interface *impl);
+ const struct wlr_addon_interface *impl);
#endif