diff options
author | thuck <denisdoria@gmail.com> | 2016-06-03 00:36:41 +0200 |
---|---|---|
committer | thuck <denisdoria@gmail.com> | 2016-06-03 00:36:41 +0200 |
commit | f55b5a4982d9db45840f001e11118107536ed011 (patch) | |
tree | ab8beed9d0e71c7dcb03ed1024ca3f44c2982f46 /sway | |
parent | 8274efc7d2e20f87eea7942371a70d75669dd824 (diff) |
Fix identation issue
Diffstat (limited to 'sway')
-rw-r--r-- | sway/commands.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sway/commands.c b/sway/commands.c index febff2dd..41233591 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -2152,9 +2152,9 @@ static struct cmd_results *cmd_set(int argc, char **argv) { return error; } - if (argv[0][0] != '$') { - return cmd_results_new(CMD_FAILURE, "set", "Malformed variable assignment, name has to start with $"); - } + if (argv[0][0] != '$') { + return cmd_results_new(CMD_FAILURE, "set", "Malformed variable assignment, name has to start with $"); + } struct sway_variable *var = NULL; // Find old variable if it exists |