Fixed style errors

This commit is contained in:
Half-Shot 2015-08-20 22:29:36 +01:00
parent 713bf29ec9
commit 68213d57c5
2 changed files with 10 additions and 12 deletions

View File

@ -356,11 +356,9 @@ static bool cmd_move(struct sway_config *config, int argc, char **argv) {
move_container(view,&root_container,MOVE_UP);
} else if (strcasecmp(argv[0], "down") == 0) {
move_container(view,&root_container,MOVE_DOWN);
} else
{
} else {
return false;
}
return true;
}