aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
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);
};