diff options
Diffstat (limited to 'tests/test_input.c')
-rw-r--r-- | tests/test_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_input.c b/tests/test_input.c index 09e7eec..180635c 100644 --- a/tests/test_input.c +++ b/tests/test_input.c @@ -40,7 +40,7 @@ #include "uterm.h" #include "test_include.h" -extern void kbd_dev_keysym_to_string(uint32_t keysym, char *str, size_t size); +extern void kbd_keysym_to_string(uint32_t keysym, char *str, size_t size); static struct ev_eloop *eloop; static struct uterm_input *input; @@ -90,7 +90,7 @@ static void input_arrived(struct uterm_input *input, char s[16]; if (ev->unicode == UTERM_INPUT_INVALID) { - kbd_dev_keysym_to_string(ev->keysym, s, sizeof(s)); + kbd_keysym_to_string(ev->keysym, s, sizeof(s)); printf("sym %s ", s); } else { /* |