address feedback

This commit is contained in:
Tony Crisci 2018-04-03 19:23:59 -04:00
parent eca4468c2c
commit 481a8275c1
5 changed files with 79 additions and 78 deletions

View file

@ -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;
}
}