Source-Changes-HG archive

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

[src/trunk]: src/sys/kern Terminate message with newline.



details:   https://anonhg.NetBSD.org/src/rev/15d7ce330fad
branches:  trunk
changeset: 339720:15d7ce330fad
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Wed Aug 05 16:37:27 2015 +0000

description:
Terminate message with newline.

diffstat:

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

diffs (27 lines):

diff -r 6627377389f2 -r 15d7ce330fad sys/kern/kern_rndq.c
--- a/sys/kern/kern_rndq.c      Wed Aug 05 15:58:01 2015 +0000
+++ b/sys/kern/kern_rndq.c      Wed Aug 05 16:37:27 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: kern_rndq.c,v 1.70 2015/04/21 12:55:57 riastradh Exp $ */
+/*     $NetBSD: kern_rndq.c,v 1.71 2015/08/05 16:37:27 riastradh Exp $ */
 
 /*-
  * Copyright (c) 1997-2013 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_rndq.c,v 1.70 2015/04/21 12:55:57 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_rndq.c,v 1.71 2015/08/05 16:37:27 riastradh Exp $");
 
 #include <sys/param.h>
 #include <sys/atomic.h>
@@ -1079,7 +1079,7 @@
                if (source->type == RND_TYPE_RNG) {
                        if (__predict_false(rnd_hwrng_test(sample))) {
                                source->flags |= RND_FLAG_NO_COLLECT;
-                               rnd_printf("rnd: disabling source \"%s\".",
+                               rnd_printf("rnd: disabling source \"%s\".\n",
                                    source->name);
                                goto skip;
                        }



Home | Main Index | Thread Index | Old Index