Module Name: src
Committed By: sjg
Date: Thu Nov 6 01:36:57 UTC 2014
Modified Files:
src/usr.bin/make: meta.c
Log Message:
Ensure -- filemon is at start of line
To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/usr.bin/make/meta.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/make/meta.c
diff -u src/usr.bin/make/meta.c:1.35 src/usr.bin/make/meta.c:1.36
--- src/usr.bin/make/meta.c:1.35 Mon Oct 20 23:22:57 2014
+++ src/usr.bin/make/meta.c Thu Nov 6 01:36:57 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: meta.c,v 1.35 2014/10/20 23:22:57 sjg Exp $ */
+/* $NetBSD: meta.c,v 1.36 2014/11/06 01:36:57 sjg Exp $ */
/*
* Implement 'meta' mode.
@@ -167,7 +167,7 @@ filemon_read(FILE *mfp, int fd)
/* rewind */
(void)lseek(fd, (off_t)0, SEEK_SET);
- fprintf(mfp, "-- filemon acquired metadata --\n");
+ fprintf(mfp, "\n-- filemon acquired metadata --\n");
while ((n = read(fd, buf, sizeof(buf))) > 0) {
fwrite(buf, 1, n, mfp);