diff options
| author | Luminarys <[email protected]> | 2015-08-13 13:22:20 -0500 | 
|---|---|---|
| committer | Luminarys <[email protected]> | 2015-08-13 14:41:36 -0500 | 
| commit | 527288a826bb5602378adccbcd56a4fa8d5dd2bc (patch) | |
| tree | dac4865cdeeb2315ead145c1be0e9aeeabf07080 /sway/commands.c | |
| parent | 9a0a858d1e29765cb48ec7a6f327fb137a871aa4 (diff) | |
fixes to cmd queue freeing, style
Diffstat (limited to 'sway/commands.c')
| -rw-r--r-- | sway/commands.c | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/sway/commands.c b/sway/commands.c index a370e83a..000b6c45 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;  	} | 
