diff options
author | Tony Crisci <tony@dubstepdish.com> | 2018-04-03 19:23:59 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2018-04-03 19:23:59 -0400 |
commit | 481a8275c178f81bb2d9927c5047e959fdbc383a (patch) | |
tree | 4a2f1f85be06a17f2885a53676bd446d8fd8c502 /sway/desktop | |
parent | eca4468c2cacd87677f7f5831d8a74f8d811d318 (diff) |
address feedback
Diffstat (limited to 'sway/desktop')
-rw-r--r-- | sway/desktop/output.c | 2 |
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 @@ struct sway_container *output_by_name(const char *name) { for (int i = 0; i < root_container.children->length; ++i) { struct sway_container *output = root_container.children->items[i]; - if (strcasecmp(output->name, name) == 0){ + if (strcasecmp(output->name, name) == 0) { return output; } } |