Source-Changes-HG archive

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

src: make this narrower by popular request.



details:   https://anonhg.NetBSD.org/src/rev/088aa388199c
branches:  trunk
changeset: 318136:088aa388199c
user:      christos <christos%NetBSD.org@localhost>
date:      Fri Apr 13 09:21:16 2018 +0000
description:
make this narrower by popular request.

diffstat:

 sys/kern/subr_prf.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 9bf51a946d4d -r 088aa388199c sys/kern/subr_prf.c
--- a/sys/kern/subr_prf.c       Fri Apr 13 09:00:29 2018 +0000
+++ b/sys/kern/subr_prf.c       Fri Apr 13 09:21:16 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: subr_prf.c,v 1.167 2018/04/11 23:20:15 christos Exp $  */
+/*     $NetBSD: subr_prf.c,v 1.168 2018/04/13 09:21:16 christos Exp $  */
 
 /*-
  * Copyright (c) 1986, 1988, 1991, 1993
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_prf.c,v 1.167 2018/04/11 23:20:15 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_prf.c,v 1.168 2018/04/13 09:21:16 christos Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ddb.h"
@@ -493,7 +493,7 @@
        int n;
 
        getnanouptime(&ts);
-       n = snprintf(buf, sizeof(buf), "[% 9jd.%.9ld] ",
+       n = snprintf(buf, sizeof(buf), "[% 5jd.%.9ld] ",
            (intmax_t)ts.tv_sec, ts.tv_nsec);
 
        for (int i = 0; i < n; i++)



Home | Main Index | Thread Index | Old Index