For pointers use NULL instead of 0.

MFC after:	2 weeks.
This commit is contained in:
araujo 2016-05-16 00:36:12 +00:00
parent 458199cffd
commit 637e3ed98a

View File

@ -543,7 +543,7 @@ lookup(u_long id, int type)
{ {
struct fileusage *fup; struct fileusage *fup;
for (fup = fuhead[type][id & (FUHASH-1)]; fup != 0; fup = fup->fu_next) for (fup = fuhead[type][id & (FUHASH-1)]; fup != NULL; fup = fup->fu_next)
if (fup->fu_id == id) if (fup->fu_id == id)
return (fup); return (fup);
return (NULL); return (NULL);