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

This commit is contained in:
pfg 2016-05-12 02:02:16 +00:00
parent c0395e345d
commit fbf894cd86

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;