From bd841e8dc5fff5d92af916eab8b66389b031e5b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Thu, 29 Apr 2021 16:19:48 +0200 Subject: [PATCH] util: Fix placement of META_DEBUG_WAYLAND in switch statement When added, it was added to the wrong place; fix that. Part-of: --- src/core/util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/util.c b/src/core/util.c index 74a884c80..2ee91025a 100644 --- a/src/core/util.c +++ b/src/core/util.c @@ -319,6 +319,8 @@ topic_name (MetaDebugTopic topic) return "DBUS"; case META_DEBUG_INPUT: return "INPUT"; + case META_DEBUG_WAYLAND: + return "WAYLAND"; case META_DEBUG_KMS: return "KMS"; case META_DEBUG_SCREEN_CAST: @@ -329,8 +331,6 @@ topic_name (MetaDebugTopic topic) return "BACKEND"; case META_DEBUG_VERBOSE: return "VERBOSE"; - case META_DEBUG_WAYLAND: - return "WAYLAND"; } return "WM";