mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 07:02:12 +02:00
correct wrong function prefixes: gslist -> i_slist
This commit is contained in:
parent
8405c6970a
commit
b5ddc55fe6
17 changed files with 47 additions and 53 deletions
|
|
@ -443,7 +443,7 @@ static void sig_destroyed(IRC_SERVER_REC *server)
|
|||
g_slist_free(server->cmdqueue);
|
||||
server->cmdqueue = NULL;
|
||||
|
||||
gslist_free_full(server->cap_active, (GDestroyNotify) g_free);
|
||||
i_slist_free_full(server->cap_active, (GDestroyNotify) g_free);
|
||||
server->cap_active = NULL;
|
||||
|
||||
if (server->cap_supported) {
|
||||
|
|
@ -451,7 +451,7 @@ static void sig_destroyed(IRC_SERVER_REC *server)
|
|||
server->cap_supported = NULL;
|
||||
}
|
||||
|
||||
gslist_free_full(server->cap_queue, (GDestroyNotify) g_free);
|
||||
i_slist_free_full(server->cap_queue, (GDestroyNotify) g_free);
|
||||
server->cap_queue = NULL;
|
||||
|
||||
/* was g_free_and_null, but can't use on a GString */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue