aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/make
diff options
context:
space:
mode:
authorJuli Mallett <jmallett@FreeBSD.org>2002-09-26 06:40:04 +0000
committerJuli Mallett <jmallett@FreeBSD.org>2002-09-26 06:40:04 +0000
commitcac04057f2f7879e837576c03afc1cd4d6ef824f (patch)
treee0f68c8102786d406fc3a56550240d238363dbd5 /usr.bin/make
parent5187d555a55ffd87b28692146512bbf6f414bb04 (diff)
Notes
Diffstat (limited to 'usr.bin/make')
-rw-r--r--usr.bin/make/targ.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/make/targ.c b/usr.bin/make/targ.c
index 04611e0bc179e..be468bb2bb7fb 100644
--- a/usr.bin/make/targ.c
+++ b/usr.bin/make/targ.c
@@ -464,7 +464,7 @@ Targ_FmtTime (time)
parts = localtime(&time);
- strftime(buf, sizeof buf, "%k:%M:%S %b %d, %Y", parts);
+ strftime(buf, sizeof buf, "%H:%M:%S %b %d, %Y", parts);
buf[sizeof(buf) - 1] = '\0';
return(buf);
}