Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/usb if_urtwn: Add a missing newline to an aprint_err...



details:   https://anonhg.NetBSD.org/src/rev/c961c0912cca
branches:  trunk
changeset: 959148:c961c0912cca
user:      yamt <yamt%NetBSD.org@localhost>
date:      Tue Feb 02 00:27:38 2021 +0000

description:
if_urtwn: Add a missing newline to an aprint_error_dev message

diffstat:

 sys/dev/usb/if_urtwn.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 00acd1f20952 -r c961c0912cca sys/dev/usb/if_urtwn.c
--- a/sys/dev/usb/if_urtwn.c    Mon Feb 01 22:36:28 2021 +0000
+++ b/sys/dev/usb/if_urtwn.c    Tue Feb 02 00:27:38 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_urtwn.c,v 1.91 2021/02/01 06:59:37 riastradh Exp $  */
+/*     $NetBSD: if_urtwn.c,v 1.92 2021/02/02 00:27:38 yamt Exp $       */
 /*     $OpenBSD: if_urtwn.c,v 1.42 2015/02/10 23:25:46 mpi Exp $       */
 
 /*-
@@ -25,7 +25,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_urtwn.c,v 1.91 2021/02/01 06:59:37 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_urtwn.c,v 1.92 2021/02/02 00:27:38 yamt Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_inet.h"
@@ -883,7 +883,7 @@
                }
 
                if (urtwn_tx_beacon(sc, m, ic->ic_bss) != 0) {
-                       aprint_error_dev(sc->sc_dev, "could not send beacon");
+                       aprint_error_dev(sc->sc_dev, "could not send beacon\n");
                }
 
                /* beacon is no longer needed */



Home | Main Index | Thread Index | Old Index