1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-13 10:02:38 +00:00

Argh! I broke the static hints parser at the last minute on freefall when

I added the $FreeBSD$ (commented) line.
Fix:
 1: s/break/continue/
 2: will somebody please shoot me! :-]
This commit is contained in:
Peter Wemm 2000-06-14 07:43:56 +00:00
parent c4b8db0095
commit 76631bb35a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=61652

View File

@ -253,7 +253,7 @@ makefile(void)
}
/* anything left? */
if (*line == '\0')
break;
continue;
fprintf(ofp, "\"%s\\0\"\n", line);
}
}