Fixed a mispelling of 0 as NULL.

This commit is contained in:
Bruce Evans 2004-03-14 05:28:29 +00:00
parent 8822b75696
commit ca7c255049
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=126954

View File

@ -133,7 +133,7 @@ convert(line)
int flen, len, rval;
char *p, *fraction;
flen = NULL;
flen = 0;
fraction = NULL;
for (p = line; *p != '\0' && *p != '\n'; ++p) {
if (isblank(*p)) {