aboutsummaryrefslogtreecommitdiff
path: root/bin/ps
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1997-08-03 08:33:17 +0000
committerPeter Wemm <peter@FreeBSD.org>1997-08-03 08:33:17 +0000
commite410bf2331a2fb792a2e4cab73fff1ef8d754112 (patch)
tree7eef0508ea0a58cfe925fab7de97e93f222e5b6f /bin/ps
parent940cca66e2fa8c28b06e20a999fc1249910e73d2 (diff)
Notes
Diffstat (limited to 'bin/ps')
-rw-r--r--bin/ps/print.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ps/print.c b/bin/ps/print.c
index 514e831b9203..bfc6c8abc2f6 100644
--- a/bin/ps/print.c
+++ b/bin/ps/print.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: print.c,v 1.21 1997/04/29 05:26:05 jkh Exp $
+ * $Id: print.c,v 1.22 1997/08/03 08:25:00 peter Exp $
*/
#ifndef lint
@@ -376,7 +376,7 @@ lstarted(k, ve)
(void)printf("%-*s", v->width, "-");
return;
}
- (void)strftime(buf, sizeof(buf) -1, "%C",
+ (void)strftime(buf, sizeof(buf) -1, "%c",
localtime(&k->ki_u.u_start.tv_sec));
(void)printf("%-*s", v->width, buf);
}