mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
Fix return value of server_setup_remove_chatnet
This commit is contained in:
parent
6ca7dc6847
commit
ef1a09b87d
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue