about summary refs log tree commit diff stats
path: root/src/ui/ui.h
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 /src/ui/ui.h
parentee14e8d05ea0c0869897945f52e724284be7675c (diff)
downloadprofani-tty-a6160d52c6fc63cab8a8f7b7c5e8563713ac0964.tar.gz
Pass value rather than address of ch during main loop
Diffstat (limited to 'src/ui/ui.h')
-rw-r--r--src/ui/ui.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/ui.h b/src/ui/ui.h
index e28914ff..58ce8fb5 100644
--- a/src/ui/ui.h
+++ b/src/ui/ui.h
@@ -61,7 +61,7 @@ void ui_close(void);
 void ui_redraw(void);
 void ui_resize(void);
 GSList* ui_get_chat_recipients(void);
-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);
 void ui_next_win(void);
 void ui_previous_win(void);