diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2014-09-09 08:53:50 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2014-09-09 08:53:50 +0200 |
| commit | cfc447cff743d286b38aa3c686f297305148a202 (patch) | |
| tree | 2d0694a11a4f44d147b1f35d514f96f38e72841f /main.c | |
| parent | ee3ded959f5486e921e45ac6753b21c2fcd63f0f (diff) | |
| download | vis-cfc447cff743d286b38aa3c686f297305148a202.tar.gz vis-cfc447cff743d286b38aa3c686f297305148a202.tar.xz | |
Change mode input prototype
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); }; |
