aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar thuck <denisdoria@gmail.com>2016-06-03 00:36:41 +0200
committerLibravatar thuck <denisdoria@gmail.com>2016-06-03 00:36:41 +0200
commitf55b5a4982d9db45840f001e11118107536ed011 (patch)
treeab8beed9d0e71c7dcb03ed1024ca3f44c2982f46
parentMerge branch 'variables_corner_cases' of https://github.com/thuck/sway into v... (diff)
downloadsway-f55b5a4982d9db45840f001e11118107536ed011.tar.gz
sway-f55b5a4982d9db45840f001e11118107536ed011.tar.zst
sway-f55b5a4982d9db45840f001e11118107536ed011.zip
Fix identation issue
-rw-r--r--sway/commands.c6
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) {
2152 return error; 2152 return error;
2153 } 2153 }
2154 2154
2155 if (argv[0][0] != '$') { 2155 if (argv[0][0] != '$') {
2156 return cmd_results_new(CMD_FAILURE, "set", "Malformed variable assignment, name has to start with $"); 2156 return cmd_results_new(CMD_FAILURE, "set", "Malformed variable assignment, name has to start with $");
2157 } 2157 }
2158 2158
2159 struct sway_variable *var = NULL; 2159 struct sway_variable *var = NULL;
2160 // Find old variable if it exists 2160 // Find old variable if it exists