diff options
author | Taiyu <taiyu.len@gmail.com> | 2015-08-10 17:32:50 -0700 |
---|---|---|
committer | Taiyu <taiyu.len@gmail.com> | 2015-08-10 17:32:50 -0700 |
commit | beabb12d63437557da8a2e254a1e0250da448aa6 (patch) | |
tree | f3a0817c74125550a8442aae6cdf2e81e793d3e9 /sway/commands.c | |
parent | 4aeaaa8abc35ff6ce9746802169918d33e7b8e61 (diff) |
destroys empty workspace + minor bugfixes
Diffstat (limited to 'sway/commands.c')
-rw-r--r-- | sway/commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands.c b/sway/commands.c index 41141f87..be9984e3 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -360,7 +360,7 @@ struct cmd_handler *find_handler(struct cmd_handler handlers[], int l, char *lin return res; } -int handle_command(struct sway_config *config, char *exec) { +bool handle_command(struct sway_config *config, char *exec) { sway_log(L_INFO, "Handling command '%s'", exec); char *ptr, *cmd; bool exec_success; |