diff options
author | 2017-08-12 09:13:06 +0000 | |
---|---|---|
committer | 2017-08-12 09:13:06 +0000 | |
commit | 8e39d4f2cbb02473c67ea66f4386e2251be00ce3 (patch) | |
tree | b0c742a5723f030cb7f44955e94e006646f96402 | |
parent | When read(2)'ing from the routing socket only one message is returned. (diff) | |
download | wireguard-openbsd-8e39d4f2cbb02473c67ea66f4386e2251be00ce3.tar.xz wireguard-openbsd-8e39d4f2cbb02473c67ea66f4386e2251be00ce3.zip |
In iwn(4), fix CID 1199266 "Missing comma in a string array"; only affects
fatal firmware error debug output.
-rw-r--r-- | sys/dev/pci/if_iwnreg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_iwnreg.h b/sys/dev/pci/if_iwnreg.h index e08d99d0a34..b4569eacd5b 100644 --- a/sys/dev/pci/if_iwnreg.h +++ b/sys/dev/pci/if_iwnreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_iwnreg.h,v 1.53 2016/04/28 08:28:18 stsp Exp $ */ +/* $OpenBSD: if_iwnreg.h,v 1.54 2017/08/12 09:13:06 stsp Exp $ */ /*- * Copyright (c) 2007, 2008 @@ -1974,7 +1974,7 @@ static const char * const iwn_fw_errmsg[] = { "NMI_INTERRUPT_DATA_ACTION_PT", "NMI_TRM_HW_ER", "NMI_INTERRUPT_TRM", - "NMI_INTERRUPT_BREAKPOINT" + "NMI_INTERRUPT_BREAKPOINT", "DEBUG_0", "DEBUG_1", "DEBUG_2", |