summaryrefslogtreecommitdiffstats
path: root/contrib/bmake
diff options
context:
space:
mode:
authorsjg <sjg@FreeBSD.org>2015-03-13 02:54:46 +0000
committersjg <sjg@FreeBSD.org>2015-03-13 02:54:46 +0000
commit41a580aa368e95deac0dfa65afed0e2b4ace93ea (patch)
tree7c05c7ee0dbcf658d802bef336a1ca8e49461b0c /contrib/bmake
parentbf31580311c0f5b2c6ba6f46be12fee05ba13b6f (diff)
downloadFreeBSD-src-41a580aa368e95deac0dfa65afed0e2b4ace93ea.zip
FreeBSD-src-41a580aa368e95deac0dfa65afed0e2b4ace93ea.tar.gz
Make sure that -- filemon is at start of a line, so that
it is found as expected.
Diffstat (limited to 'contrib/bmake')
-rw-r--r--contrib/bmake/meta.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/bmake/meta.c b/contrib/bmake/meta.c
index 3ec0bdc..ddced23 100644
--- a/contrib/bmake/meta.c
+++ b/contrib/bmake/meta.c
@@ -169,7 +169,7 @@ filemon_read(FILE *mfp, int fd)
if ((fp = fdopen(fd, "r")) == NULL)
err(1, "Could not read build monitor file '%d'", fd);
- fprintf(mfp, "-- filemon acquired metadata --\n");
+ fprintf(mfp, "\n-- filemon acquired metadata --\n");
while (fgets(buf, sizeof(buf), fp)) {
fprintf(mfp, "%s", buf);
OpenPOWER on IntegriCloud