diff options
author | James Booth <boothj5@gmail.com> | 2015-01-14 23:54:46 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-01-14 23:54:46 +0000 |
commit | a6160d52c6fc63cab8a8f7b7c5e8563713ac0964 (patch) | |
tree | d764c050caa373e34c7a1a3b2dae883812241c14 /tests | |
parent | ee14e8d05ea0c0869897945f52e724284be7675c (diff) | |
download | profani-tty-a6160d52c6fc63cab8a8f7b7c5e8563713ac0964.tar.gz |
Pass value rather than address of ch during main loop
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ui/stub_ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/stub_ui.c b/tests/ui/stub_ui.c index 76b71265..da75c3dd 100644 --- a/tests/ui/stub_ui.c +++ b/tests/ui/stub_ui.c @@ -64,7 +64,7 @@ GSList* ui_get_chat_recipients(void) return NULL; } -void ui_handle_special_keys(const wint_t * const ch, const int result) {} +void ui_handle_special_keys(const wint_t ch, const int result) {} gboolean ui_switch_win(const int i) { |