util: Fix placement of META_DEBUG_WAYLAND in switch statement

When added, it was added to the wrong place; fix that.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1854>
This commit is contained in:
Jonas Ådahl 2021-04-29 16:19:48 +02:00
parent 7058013660
commit bd841e8dc5

View File

@ -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";