correct wrong function prefixes: g_input -> i_input

This commit is contained in:
Ailin Nemui 2021-01-04 12:57:23 +01:00
commit edb2f699d1
17 changed files with 72 additions and 103 deletions

View file

@ -85,9 +85,8 @@ static void sig_input(void);
void input_listen_init(int handle)
{
readtag = g_input_add_poll(handle,
G_PRIORITY_HIGH, G_INPUT_READ,
(GInputFunction) sig_input, NULL);
readtag = i_input_add_poll(handle, G_PRIORITY_HIGH, I_INPUT_READ,
(GInputFunction) sig_input, NULL);
}
void input_listen_deinit(void)