diff options
author | James Booth <boothj5@gmail.com> | 2015-02-05 00:58:23 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-02-05 00:58:23 +0000 |
commit | a70aa0255fc438894e563f80dfb4ab88278a1118 (patch) | |
tree | a0ecd10ec5fe50aff2149cfde1fd6fd5bad2c2f2 /tests | |
parent | 30180ac8bb125e4cae03c415201f796863d4c80b (diff) | |
download | profani-tty-a70aa0255fc438894e563f80dfb4ab88278a1118.tar.gz |
Moved command processing to main loop, allow resize during password prompt
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 e0556ac8..2d67a543 100644 --- a/tests/ui/stub_ui.c +++ b/tests/ui/stub_ui.c @@ -329,9 +329,9 @@ void ui_update_presence(const resource_presence_t resource_presence, void ui_about(void) {} void ui_statusbar_new(const int win) {} -gboolean ui_readline(void) +char* ui_readline(void) { - return TRUE; + return NULL; } void ui_inp_history_append(char *inp) {} |