diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-03-30 00:00:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-30 00:00:23 -0400 |
commit | 7162b9bea4d66d61376ad3605e23e2d83bb95201 (patch) | |
tree | 6f7a3121f15503a923c1ce53bf2bee368c6149a6 /sway/commands/output.c | |
parent | 472e81f35d689d67cda241acafda91c688d61046 (diff) | |
parent | 8f490d7d2dbadfe85dcf3dcd972471e86671442a (diff) |
Merge pull request #1654 from acrisci/refactor-2-electric-boogaloo
Revert "Merge pull request #1653 from swaywm/revert-1647-refactor-tree"
Diffstat (limited to 'sway/commands/output.c')
-rw-r--r-- | sway/commands/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/output.c b/sway/commands/output.c index 35bc8099..f7e3372c 100644 --- a/sway/commands/output.c +++ b/sway/commands/output.c @@ -296,7 +296,7 @@ struct cmd_results *cmd_output(int argc, char **argv) { char identifier[128]; bool all = strcmp(output->name, "*") == 0; for (int i = 0; i < root_container.children->length; ++i) { - swayc_t *cont = root_container.children->items[i]; + struct sway_container *cont = root_container.children->items[i]; if (cont->type != C_OUTPUT) { continue; } |