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:
parent
6ca7dc6847
commit
ef1a09b87d
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user