diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-08-10 18:00:19 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-08-10 18:00:19 -0400 |
commit | cd9e71fb034547aab4a26c84521abb498ca05db7 (patch) | |
tree | dfdb037b48e2624832e15d0c3a23e4cfe06bda0a /sway/commands.h | |
parent | 763c44fb857047dc730f5270e87e28341d7dd5ea (diff) | |
parent | a386d98518a5a1838fafb10a2b2cfa3a4feb85cb (diff) | |
download | sway-cd9e71fb034547aab4a26c84521abb498ca05db7.tar.xz |
Merge pull request #13 from Luminarys/master
Changed cmd handlers to use bool instead of int
Diffstat (limited to 'sway/commands.h')
-rw-r--r-- | sway/commands.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands.h b/sway/commands.h index 42b39f27..19fd3f33 100644 --- a/sway/commands.h +++ b/sway/commands.h @@ -5,7 +5,7 @@ struct cmd_handler { char *command; - int (*handle)(struct sway_config *config, int argc, char **argv); + bool (*handle)(struct sway_config *config, int argc, char **argv); }; int handle_command(struct sway_config *config, char *command); |