summaryrefslogtreecommitdiff
path: root/sway/commands.c
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2015-08-13 15:52:16 -0400
committerDrew DeVault <[email protected]>2015-08-13 15:52:16 -0400
commit3a3c50135fabc6a23f7b130effef9b642e54bf3c (patch)
treed22fbf61f38f7c8987df51cf5f23b60e5f95e3b3 /sway/commands.c
parent0dc1d87490eaadbe245af7406b0e5ca4d53f17a0 (diff)
parentffe59b27a956e4430a97d65874ef15c5e9129ee0 (diff)
Merge pull request #26 from Luminarys/master
Added in proper workspace name generation and command queue
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 0adda3e7..cae35237 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -229,8 +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;
}