1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-26 07:55:01 +00:00

Unbreak build after r327614

Approved by:	mjg (on IRC)
Differential Revision:	https://reviews.freebsd.org/D13782
This commit is contained in:
Li-Wen Hsu 2018-01-06 09:48:04 +00:00
parent 10988193d3
commit 917fa2a3e9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=327616

View File

@ -605,7 +605,7 @@ fdecode(FILE *stream)
char buf[BUFSIZ];
s = buf;
while (fgets(s, BUFSIZ - (s - buf), stdin)) {
while (fgets(s, BUFSIZ - (s - buf), stream)) {
p = buf;
while (*p && isblank(*p)) {