chat(8): use NULL instead of zero for initializing a pointer.

This commit is contained in:
Pedro F. Giffuni 2016-05-12 02:02:16 +00:00
parent 3e17f981b0
commit 59009de8e9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=299500

View file

@ -1401,7 +1401,7 @@ vfmtmsg(char *buf, int buflen, const char *fmt, va_list args)
}
}
}
str = 0;
str = NULL;
base = 0;
neg = 0;
++fmt;