diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-08-10 23:26:04 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-08-10 23:26:04 -0400 |
commit | e62e294366e634dbd584ea8fd2a9ed93aa81e356 (patch) | |
tree | 41a39c63ff375b81272bcfcec7719e510359d858 /sway/commands.c | |
parent | 4aeaaa8abc35ff6ce9746802169918d33e7b8e61 (diff) | |
parent | 25a3aa6ed675c70a7cb83aca0ec5eccae23e42fa (diff) |
Merge pull request #15 from taiyu-len/master
destroys empty workspace + minor fixes
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; |