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

View file

@ -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_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; return object;