aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/output.c
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2018-04-03 19:23:59 -0400
committerLibravatar Tony Crisci <tony@dubstepdish.com>2018-04-03 19:23:59 -0400
commit481a8275c178f81bb2d9927c5047e959fdbc383a (patch)
tree4a2f1f85be06a17f2885a53676bd446d8fd8c502 /sway/desktop/output.c
parentfix old todos (diff)
downloadsway-481a8275c178f81bb2d9927c5047e959fdbc383a.tar.gz
sway-481a8275c178f81bb2d9927c5047e959fdbc383a.tar.zst
sway-481a8275c178f81bb2d9927c5047e959fdbc383a.zip
address feedback
Diffstat (limited to 'sway/desktop/output.c')
-rw-r--r--sway/desktop/output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index e60fac5f..de5076d8 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -25,7 +25,7 @@
25struct sway_container *output_by_name(const char *name) { 25struct sway_container *output_by_name(const char *name) {
26 for (int i = 0; i < root_container.children->length; ++i) { 26 for (int i = 0; i < root_container.children->length; ++i) {
27 struct sway_container *output = root_container.children->items[i]; 27 struct sway_container *output = root_container.children->items[i];
28 if (strcasecmp(output->name, name) == 0){ 28 if (strcasecmp(output->name, name) == 0) {
29 return output; 29 return output;
30 } 30 }
31 } 31 }