diff options
Diffstat (limited to 'usr.bin/make/compat.c')
| -rw-r--r-- | usr.bin/make/compat.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/make/compat.c b/usr.bin/make/compat.c index 1ff3e533ea9cd..92c59cde44341 100644 --- a/usr.bin/make/compat.c +++ b/usr.bin/make/compat.c @@ -457,13 +457,13 @@ CompatMake (gnp, pgnp) * we were modified last. The criteria for datedness are defined by the * Make_OODate function. */ - DEBUGF(MAKE, "Examining %s...", gn->name); + DEBUGF(MAKE, ("Examining %s...", gn->name)); if (! Make_OODate(gn)) { gn->made = UPTODATE; - DEBUGF(MAKE, "up-to-date.\n"); + DEBUGF(MAKE, ("up-to-date.\n")); return (0); } else { - DEBUGF(MAKE, "out-of-date.\n"); + DEBUGF(MAKE, ("out-of-date.\n")); } /* @@ -570,7 +570,7 @@ CompatMake (gnp, pgnp) } if (gn->cmtime > gn->mtime) gn->mtime = gn->cmtime; - DEBUGF(MAKE, "update time: %s\n", Targ_FmtTime(gn->mtime)); + DEBUGF(MAKE, ("update time: %s\n", Targ_FmtTime(gn->mtime))); #endif if (!(gn->type & OP_EXEC)) { pgn->childMade = TRUE; |
