about summary refs log tree commit diff stats
path: root/tests/ui
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-01-14 23:54:46 +0000
committerJames Booth <boothj5@gmail.com>2015-01-14 23:54:46 +0000
commita6160d52c6fc63cab8a8f7b7c5e8563713ac0964 (patch)
treed764c050caa373e34c7a1a3b2dae883812241c14 /tests/ui
parentee14e8d05ea0c0869897945f52e724284be7675c (diff)
downloadprofani-tty-a6160d52c6fc63cab8a8f7b7c5e8563713ac0964.tar.gz
Pass value rather than address of ch during main loop
Diffstat (limited to 'tests/ui')
-rw-r--r--tests/ui/stub_ui.c2
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)
 {