diff options
author | James Booth <boothj5@gmail.com> | 2016-10-15 21:05:26 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-10-15 21:05:26 +0100 |
commit | f3aebd547cb40818f5b87be66354e359447a54c7 (patch) | |
tree | 4c921e6b0d004a45ba34041a2cd0ca48f45c3644 /tests | |
parent | c814cb44b8dafc04baf402cad7f7be165aa1ce6b (diff) | |
download | profani-tty-f3aebd547cb40818f5b87be66354e359447a54c7.tar.gz |
Use varargs in win_println_indent
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unittests/ui/stub_ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittests/ui/stub_ui.c b/tests/unittests/ui/stub_ui.c index ac08665e..c93f08fd 100644 --- a/tests/unittests/ui/stub_ui.c +++ b/tests/unittests/ui/stub_ui.c @@ -530,7 +530,7 @@ void win_show_occupant(ProfWin *window, Occupant *occupant) {} void win_show_occupant_info(ProfWin *window, const char * const room, Occupant *occupant) {} void win_show_contact(ProfWin *window, PContact contact) {} void win_show_info(ProfWin *window, PContact contact) {} -void win_println_indent(ProfWin *window, int pad, const char * const message) {} +void win_println_indent(ProfWin *window, int pad, const char * const message, ...) {} void win_clear(ProfWin *window) {} char* win_to_string(ProfWin *window) { |