aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/config/mkmakefile.c
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2000-06-14 07:43:56 +0000
committerPeter Wemm <peter@FreeBSD.org>2000-06-14 07:43:56 +0000
commit76631bb35a6d558cd9698f6d3ed374fd8f9e54e3 (patch)
tree88b307a5770e2144837b69d4f5b2d6a39bb8ca55 /usr.sbin/config/mkmakefile.c
parentc4b8db00955967a4b3cdad99b3fed6a77f54fea5 (diff)
downloadsrc-76631bb35a6d558cd9698f6d3ed374fd8f9e54e3.tar.gz
src-76631bb35a6d558cd9698f6d3ed374fd8f9e54e3.zip
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! :-]
Notes
Notes: svn path=/head/; revision=61652
Diffstat (limited to 'usr.sbin/config/mkmakefile.c')
-rw-r--r--usr.sbin/config/mkmakefile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/config/mkmakefile.c b/usr.sbin/config/mkmakefile.c
index f0107ed8fcbb..282378082ce2 100644
--- a/usr.sbin/config/mkmakefile.c
+++ b/usr.sbin/config/mkmakefile.c
@@ -253,7 +253,7 @@ makefile(void)
}
/* anything left? */
if (*line == '\0')
- break;
+ continue;
fprintf(ofp, "\"%s\\0\"\n", line);
}
}