diff options
author | James Booth <boothj5@gmail.com> | 2015-01-15 01:21:24 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-01-15 01:21:24 +0000 |
commit | aec14848065765c0101f0ee09fbcf81c920a22d7 (patch) | |
tree | 5db660e7b8c040fdd561a8f6b1f94dcda436e6c7 /tests | |
parent | 3b69ad7b610cbd9a5f77ebe0af5b9d58c32c4050 (diff) | |
download | profani-tty-aec14848065765c0101f0ee09fbcf81c920a22d7.tar.gz |
Removed ch from main loop
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ui/stub_ui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/stub_ui.c b/tests/ui/stub_ui.c index cee10aa9..e5588cad 100644 --- a/tests/ui/stub_ui.c +++ b/tests/ui/stub_ui.c @@ -323,9 +323,9 @@ void ui_update_presence(const resource_presence_t resource_presence, void ui_about(void) {} void ui_statusbar_new(const int win) {} -wint_t ui_get_char(char *input, int *size) +gboolean ui_get_char(char *input, int *size) { - return 0; + return FALSE; } void ui_input_clear(void) {} |