Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/pci Add missing comma, else the strings are concaten...



details:   https://anonhg.NetBSD.org/src/rev/e9416eff1bdf
branches:  trunk
changeset: 822295:e9416eff1bdf
user:      maya <maya%NetBSD.org@localhost>
date:      Sat Mar 11 21:23:36 2017 +0000

description:
Add missing comma, else the strings are concatenated (and possibly the
wrong message is used). noted by coverity.

Linux iwlwifi strings seem similar.

diffstat:

 sys/dev/pci/if_iwnreg.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 8e0ab22cc4c2 -r e9416eff1bdf sys/dev/pci/if_iwnreg.h
--- a/sys/dev/pci/if_iwnreg.h   Sat Mar 11 18:24:22 2017 +0000
+++ b/sys/dev/pci/if_iwnreg.h   Sat Mar 11 21:23:36 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_iwnreg.h,v 1.15 2014/11/09 14:40:54 nonaka Exp $    */
+/*     $NetBSD: if_iwnreg.h,v 1.16 2017/03/11 21:23:36 maya Exp $      */
 /*     $OpenBSD: if_iwnreg.h,v 1.49 2014/09/09 18:56:24 sthen Exp $    */
 
 /*-
@@ -1940,7 +1940,7 @@
        "NMI_INTERRUPT_DATA_ACTION_PT",
        "NMI_TRM_HW_ER",
        "NMI_INTERRUPT_TRM",
-       "NMI_INTERRUPT_BREAKPOINT"
+       "NMI_INTERRUPT_BREAKPOINT",
        "DEBUG_0",
        "DEBUG_1",
        "DEBUG_2",



Home | Main Index | Thread Index | Old Index