aboutsummaryrefslogtreecommitdiff
path: root/sway/tree/node.c
diff options
context:
space:
mode:
authorRonan Pigott <ronan@rjp.ie>2022-11-16 15:50:34 -0700
committerSimon Ser <contact@emersion.fr>2022-11-26 09:48:58 +0100
commit1c4b94ae3ca94b972410c80a61404a347af1ee68 (patch)
tree6c1da048dcde3ed4e74ca318da219c28f6f49378 /sway/tree/node.c
parenteb5021ef990fb29ff86544aea58d687ad62c757a (diff)
node: prettify node type names
Diffstat (limited to 'sway/tree/node.c')
-rw-r--r--sway/tree/node.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sway/tree/node.c b/sway/tree/node.c
index bc7e2aa5..12361c75 100644
--- a/sway/tree/node.c
+++ b/sway/tree/node.c
@@ -18,13 +18,13 @@ void node_init(struct sway_node *node, enum sway_node_type type, void *thing) {
const char *node_type_to_str(enum sway_node_type type) {
switch (type) {
case N_ROOT:
- return "N_ROOT";
+ return "root";
case N_OUTPUT:
- return "N_OUTPUT";
+ return "output";
case N_WORKSPACE:
- return "N_WORKSPACE";
+ return "workspace";
case N_CONTAINER:
- return "N_CONTAINER";
+ return "container";
}
return "";
}