aboutsummaryrefslogtreecommitdiff
path: root/sway/commands.c
diff options
context:
space:
mode:
authorLuminarys <kizunanohikari@gmail.com>2015-08-13 14:41:29 -0500
committerLuminarys <kizunanohikari@gmail.com>2015-08-13 14:41:36 -0500
commitea9efc884d92d32863287b8d8e5a5f8bd631f9f5 (patch)
tree363ec049383bbdd587ebec45625c25423b8165eb /sway/commands.c
parentd785cbd54c8813ad0e19c82ee6179ca335af588b (diff)
Allowed for execd commands to be spawned after abort
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands.c b/sway/commands.c
index cae35237..c95b9858 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -229,7 +229,7 @@ static bool cmd_set(struct sway_config *config, int argc, char **argv) {
static bool _do_split(struct sway_config *config, int argc, char **argv, int layout) {
char *name = layout == L_VERT ? "splitv":
- layout == L_HORIZ ? "splith":"split";
+ layout == L_HORIZ ? "splith":"split";
if (!checkarg(argc, name, EXPECTED_EQUAL_TO, 0)) {
return false;
}