aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2014-09-09 08:53:50 +0200
committerMarc André Tanner <mat@brain-dump.org>2014-09-09 08:53:50 +0200
commitcfc447cff743d286b38aa3c686f297305148a202 (patch)
tree2d0694a11a4f44d147b1f35d514f96f38e72841f /main.c
parentee3ded959f5486e921e45ac6753b21c2fcd63f0f (diff)
downloadvis-cfc447cff743d286b38aa3c686f297305148a202.tar.gz
vis-cfc447cff743d286b38aa3c686f297305148a202.tar.xz
Change mode input prototype
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 28b72c5..f3435d8 100644
--- a/main.c
+++ b/main.c
@@ -46,7 +46,7 @@ struct Mode {
void (*enter)(Mode *old);
void (*leave)(Mode *new);
bool (*unknown)(Key *key0, Key *key1); /* unknown key for this mode, return value determines whether parent modes will be checked */
- bool (*input)(const char *str, size_t len); /* unknown key for this an all parent modes */
+ void (*input)(const char *str, size_t len); /* unknown key for this an all parent modes */
void (*idle)(void);
};