1
0
mirror of https://github.com/irssi/irssi.git synced 2024-12-04 14:46:39 -05:00

Fix return value of server_setup_remove_chatnet

This commit is contained in:
isundil 2015-10-01 22:53:34 +02:00
parent 6ca7dc6847
commit ef1a09b87d

View File

@ -509,7 +509,7 @@ void server_setup_remove_chatnet(const char *chatnet)
{
GSList *tmp, *next;
g_return_val_if_fail(chatnet != NULL, NULL);
g_return_if_fail(chatnet != NULL);
for (tmp = setupservers; tmp != NULL; tmp = next) {
SERVER_SETUP_REC *rec = tmp->data;