1
1
mirror of https://github.com/swaywm/sway synced 2024-11-18 23:14:03 +01:00

fix typo in ipc-json.c

This commit is contained in:
Zandr Martin 2016-07-04 13:46:19 -05:00
parent 15a324b0d3
commit f8a94f2f4b
No known key found for this signature in database
GPG Key ID: AA2BB8EF77F7BBDC

@ -319,7 +319,7 @@ json_object *ipc_json_describe_container_recursive(swayc_t *c) {
json_object_array_add(scratchpad_json, ipc_json_describe_container_recursive(scratchpad->items[i]));
}
}
json_object_object_add(object, "scratchpad", unmanaged);
json_object_object_add(object, "scratchpad", scratchpad_json);
}
return object;