summaryrefslogtreecommitdiffstats
path: root/sway
diff options
context:
space:
mode:
authorLibravatar Zandr Martin <zandrmartin@gmail.com>2016-07-04 13:46:19 -0500
committerLibravatar Zandr Martin <zandrmartin@gmail.com>2016-07-04 13:46:19 -0500
commitf8a94f2f4b429c75940d7451d3e7d75dfd4b66d3 (patch)
tree950cdd74eab6be35b553e7498880e964cb338743 /sway
parentimplement `get_tree` command (diff)
downloadsway-f8a94f2f4b429c75940d7451d3e7d75dfd4b66d3.tar.gz
sway-f8a94f2f4b429c75940d7451d3e7d75dfd4b66d3.tar.zst
sway-f8a94f2f4b429c75940d7451d3e7d75dfd4b66d3.zip
fix typo in ipc-json.c
Diffstat (limited to 'sway')
-rw-r--r--sway/ipc-json.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/ipc-json.c b/sway/ipc-json.c
index 46caad9c..69412023 100644
--- a/sway/ipc-json.c
+++ b/sway/ipc-json.c
@@ -319,7 +319,7 @@ json_object *ipc_json_describe_container_recursive(swayc_t *c) {
319 json_object_array_add(scratchpad_json, ipc_json_describe_container_recursive(scratchpad->items[i])); 319 json_object_array_add(scratchpad_json, ipc_json_describe_container_recursive(scratchpad->items[i]));
320 } 320 }
321 } 321 }
322 json_object_object_add(object, "scratchpad", unmanaged); 322 json_object_object_add(object, "scratchpad", scratchpad_json);
323 } 323 }
324 324
325 return object; 325 return object;