Source-Changes-HG archive

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

[src/netbsd-8]: src/sys/dev/scsipi Pull up following revision(s) (requested b...



details:   https://anonhg.NetBSD.org/src/rev/941af9245920
branches:  netbsd-8
changeset: 851998:941af9245920
user:      martin <martin%NetBSD.org@localhost>
date:      Sun Sep 23 17:24:59 2018 +0000

description:
Pull up following revision(s) (requested by mrg in ticket #1023):

        sys/dev/scsipi/scsipi_verbose.c: revision 1.34

don't print a blank line that ends up in logs and console output.

diffstat:

 sys/dev/scsipi/scsipi_verbose.c |  8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

diffs (30 lines):

diff -r 693c2f26b47f -r 941af9245920 sys/dev/scsipi/scsipi_verbose.c
--- a/sys/dev/scsipi/scsipi_verbose.c   Sun Sep 23 17:22:51 2018 +0000
+++ b/sys/dev/scsipi/scsipi_verbose.c   Sun Sep 23 17:24:59 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: scsipi_verbose.c,v 1.33 2016/09/17 18:53:13 kardel Exp $       */
+/*     $NetBSD: scsipi_verbose.c,v 1.33.8.1 2018/09/23 17:24:59 martin Exp $   */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: scsipi_verbose.c,v 1.33 2016/09/17 18:53:13 kardel Exp $");
+__KERNEL_RCSID(0, "$NetBSD: scsipi_verbose.c,v 1.33.8.1 2018/09/23 17:24:59 martin Exp $");
 
 #include <sys/param.h>
 #include <sys/time.h>
@@ -954,10 +954,8 @@
        if (sbs)
                printf("\n         SKSV:  %s", sbs);
        printf("\n");
-       if (verbosity == 0) {
-               printf("\n");
+       if (verbosity == 0)
                return;
-       }
 
        /*
         * Now figure whether we should print any additional informtion.



Home | Main Index | Thread Index | Old Index