Don't return 0 in place of NULL

This commit is contained in:
TingPing
2014-12-31 11:31:17 -05:00
parent 112632bb4e
commit 2a28289314
9 changed files with 25 additions and 25 deletions

View File

@@ -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