mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-15 18:20:20 +00:00
Don't return 0 in place of NULL
This commit is contained in:
@@ -209,7 +209,7 @@ find_dialog (server *serv, char *nick)
|
||||
}
|
||||
list = list->next;
|
||||
}
|
||||
return 0;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
session *
|
||||
@@ -227,7 +227,7 @@ find_channel (server *serv, char *chan)
|
||||
}
|
||||
list = list->next;
|
||||
}
|
||||
return 0;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static void
|
||||
|
||||
Reference in New Issue
Block a user