diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2019-07-29 12:02:47 +0300 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2019-10-17 19:42:55 +0300 |
commit | 9bb1c3a3c224bc805fba1c0dbb248e24d779548d (patch) | |
tree | 1a5dc7cd60cc7083593fcd7cb17a1be5b25d5da8 /xwayland | |
parent | 0c7beb0b67e746e9762c4c47f5055b634b264655 (diff) | |
download | weston-9bb1c3a3c224bc805fba1c0dbb248e24d779548d.tar.gz |
weston-log: Add 'destroy_subscription' callback for the subscription
As 'new_subscription' can create additional objects, 'destroy_subscription'
will be needed when cleaning up.
As this requires a libweston_major bump (noticed by @pq), bump it up to
8.
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Suggested-by: Daniel Stone <daniel.stone@collabora.com>
Diffstat (limited to 'xwayland')
-rw-r--r-- | xwayland/launcher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xwayland/launcher.c b/xwayland/launcher.c index 28383384..1d51ee8f 100644 --- a/xwayland/launcher.c +++ b/xwayland/launcher.c @@ -398,7 +398,7 @@ weston_module_init(struct weston_compositor *compositor) weston_compositor_add_log_scope(wxs->compositor->weston_log_ctx, "xwm-wm-x11", "XWM's window management X11 events\n", - NULL, NULL); + NULL, NULL, NULL); return 0; } |