sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 63d96c1bb45da39fa751fae654102e4dab36079a
parent 10c8b73075fa0dd5512cc14be7240ec47f68dece
Author: Drew DeVault <sir@cmpwn.com>
Date:   Thu, 15 Dec 2016 18:39:40 -0500

Fix indentation issues

Diffstat:
Msway/commands/bar/colors.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sway/commands/bar/colors.c b/sway/commands/bar/colors.c @@ -32,9 +32,9 @@ static struct cmd_results *parse_three_colors(char ***colors, const char *cmd_na for (i = 0; i < 3; i++) { if (!*colors[i]) { *(colors[i]) = malloc(10); - if (!*(colors[i])) { - return cmd_results_new(CMD_FAILURE, cmd_name, "Unable to allocate color"); - } + if (!*(colors[i])) { + return cmd_results_new(CMD_FAILURE, cmd_name, "Unable to allocate color"); + } } error = add_color(cmd_name, *(colors[i]), argv[i]); if (error) {