From 2a282893140c0e838a4750da80198d07e355acc6 Mon Sep 17 00:00:00 2001 From: TingPing Date: Wed, 31 Dec 2014 11:31:17 -0500 Subject: Don't return 0 in place of NULL --- src/common/inbound.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/common/inbound.c') diff --git a/src/common/inbound.c b/src/common/inbound.c index 720c7e9b..db68c64c 100644 --- a/src/common/inbound.c +++ b/src/common/inbound.c @@ -118,7 +118,7 @@ find_session_from_nick (char *nick, server *serv) } list = list->next; } - return 0; + return NULL; } static session * @@ -555,7 +555,7 @@ find_unused_session (server *serv) } list = list->next; } - return 0; + return NULL; } static session * @@ -573,7 +573,7 @@ find_session_from_waitchannel (char *chan, struct server *serv) } list = list->next; } - return 0; + return NULL; } void @@ -932,7 +932,7 @@ find_session_from_type (int type, server *serv) return sess; list = list->next; } - return 0; + return NULL; } void -- cgit 1.4.1