Remove the last EOF spaces I missed in rev. 1.43.

MFC after:	1 week
This commit is contained in:
Maxim Konovalov 2002-07-01 13:18:52 +00:00
parent 27cc91fbf8
commit 21ee796112
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=99209

View File

@ -944,7 +944,7 @@ parse8601(char *s, char *errline)
return -1;
}
if ((tsecs = mktime(&tm)) == -1)
errx(1, "nonexistent time:\n%s", errline);
errx(1, "nonexistent time:\n%s", errline);
return tsecs;
}
@ -1115,6 +1115,6 @@ parseDWM(char *s, char *errline)
s = t;
}
if ((tsecs = mktime(&tm)) == -1)
errx(1, "nonexistent time:\n%s", errline);
errx(1, "nonexistent time:\n%s", errline);
return tsecs;
}