Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make Ensure -- filemon is at start of line



details:   https://anonhg.NetBSD.org/src/rev/1681953482a6
branches:  trunk
changeset: 803642:1681953482a6
user:      sjg <sjg%NetBSD.org@localhost>
date:      Thu Nov 06 01:36:57 2014 +0000

description:
Ensure -- filemon is at start of line

diffstat:

 usr.bin/make/meta.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 01ba5b325a94 -r 1681953482a6 usr.bin/make/meta.c
--- a/usr.bin/make/meta.c       Thu Nov 06 01:29:25 2014 +0000
+++ b/usr.bin/make/meta.c       Thu Nov 06 01:36:57 2014 +0000
@@ -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 @@
     /* 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);



Home | Main Index | Thread Index | Old Index