correct wrong function prefixes: g_istr -> i_istr

This commit is contained in:
Ailin Nemui 2021-01-04 13:11:09 +01:00
commit 9181796472
14 changed files with 30 additions and 36 deletions

View file

@ -456,8 +456,7 @@ static void sig_channel_created(CHANNEL_REC *channel)
{
g_return_if_fail(IS_CHANNEL(channel));
channel->nicks = g_hash_table_new((GHashFunc) g_istr_hash,
(GCompareFunc) g_istr_equal);
channel->nicks = g_hash_table_new((GHashFunc) i_istr_hash, (GCompareFunc) i_istr_equal);
}
static void nicklist_remove_hash(gpointer key, NICK_REC *nick,