Pass value rather than address of ch during main loop

This commit is contained in:
James Booth
2015-01-14 23:54:46 +00:00
parent ee14e8d05e
commit a6160d52c6
4 changed files with 24 additions and 24 deletions

View File

@@ -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)
{