aboutsummaryrefslogtreecommitdiff
path: root/sway/commands.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2015-08-10 18:00:19 -0400
committerDrew DeVault <sir@cmpwn.com>2015-08-10 18:00:19 -0400
commitcd9e71fb034547aab4a26c84521abb498ca05db7 (patch)
treedfdb037b48e2624832e15d0c3a23e4cfe06bda0a /sway/commands.h
parent763c44fb857047dc730f5270e87e28341d7dd5ea (diff)
parenta386d98518a5a1838fafb10a2b2cfa3a4feb85cb (diff)
downloadsway-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.h2
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);