diff options
author | Drew DeVault <[email protected]> | 2015-08-10 15:26:49 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-08-10 15:26:49 -0400 |
commit | c9bce5dd227686e9a03ac54dcfc2dc19c919edca (patch) | |
tree | 03362796768e30703d463febd494d7956b271cc3 /sway/commands.h | |
parent | 9c3a04b996649c0c578410e02181d8808b13c646 (diff) | |
parent | 88997bbfe65c20ff2bbc28f49ee2d84a79972d61 (diff) |
Merge pull request #7 from Luminarys/master
Added in reload and exec_always handling.
Diffstat (limited to 'sway/commands.h')
-rw-r--r-- | sway/commands.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/commands.h b/sway/commands.h index f99a5201..42b39f27 100644 --- a/sway/commands.h +++ b/sway/commands.h @@ -4,8 +4,8 @@ #include "config.h" struct cmd_handler { - char *command; - int (*handle)(struct sway_config *config, int argc, char **argv); + char *command; + int (*handle)(struct sway_config *config, int argc, char **argv); }; int handle_command(struct sway_config *config, char *command); |