Bugfix: IPC: Correctly dump the 'focus' array

next
Michael Stapelberg 2011-09-26 20:11:47 +01:00
parent 30dea1fda6
commit abaa8c2356
1 changed files with 1 additions and 1 deletions

View File

@ -279,7 +279,7 @@ void dump_node(yajl_gen gen, struct Con *con, bool inplace_restart) {
ystr("focus");
y(array_open);
TAILQ_FOREACH(node, &(con->focus_head), nodes) {
TAILQ_FOREACH(node, &(con->focus_head), focused) {
y(integer, (long int)node);
}
y(array_close);