From 762e286a44a8a688907516e8805136cb2afba7e1 Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Wed, 12 Mar 2025 15:05:09 +0200 Subject: [PATCH] cp: Correctly format debug scope for content protection Signed-off-by: Marius Vlad --- libweston/content-protection.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libweston/content-protection.c b/libweston/content-protection.c index d732b1657..bb4ff8b8b 100644 --- a/libweston/content-protection.c +++ b/libweston/content-protection.c @@ -343,8 +343,8 @@ weston_compositor_enable_content_protection(struct weston_compositor *compositor cp->destroy_listener.notify = cp_destroy_listener; wl_signal_add(&compositor->destroy_signal, &cp->destroy_listener); - cp->debug = weston_compositor_add_log_scope(compositor, "content-protection-debug", - "debug-logs for content-protection", + cp->debug = weston_compositor_add_log_scope(compositor, "content-protection", + "debug-logs for content-protection\n", NULL, NULL, NULL); return 0; }