summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstsp <stsp@openbsd.org>2017-08-23 13:05:12 +0000
committerstsp <stsp@openbsd.org>2017-08-23 13:05:12 +0000
commit93edd9ef6823d39977b6933a51422543a0479611 (patch)
tree17b6d4b86d8b5f7f838a56a80132f660b2b7d064
parentImprove ASCII rendering of a few rare character escape sequences (diff)
downloadwireguard-openbsd-93edd9ef6823d39977b6933a51422543a0479611.tar.xz
wireguard-openbsd-93edd9ef6823d39977b6933a51422543a0479611.zip
Fix typos in iwm(4) error messages. Patch by Bryan Linton.
-rw-r--r--sys/dev/pci/if_iwm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/if_iwm.c b/sys/dev/pci/if_iwm.c
index 6314365e8b3..3f3a13f0940 100644
--- a/sys/dev/pci/if_iwm.c
+++ b/sys/dev/pci/if_iwm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_iwm.c,v 1.211 2017/08/13 18:08:03 stsp Exp $ */
+/* $OpenBSD: if_iwm.c,v 1.212 2017/08/23 13:05:12 stsp Exp $ */
/*
* Copyright (c) 2014, 2016 genua gmbh <info@genua.de>
@@ -5643,7 +5643,7 @@ iwm_run(struct iwm_softc *sc)
err = iwm_power_update_device(sc);
if (err) {
- printf("%s: could send power command (error %d)\n",
+ printf("%s: could not send power command (error %d)\n",
DEVNAME(sc), err);
return err;
}
@@ -6313,7 +6313,7 @@ iwm_init_hw(struct iwm_softc *sc)
err = iwm_power_update_device(sc);
if (err) {
- printf("%s: could send power command (error %d)\n",
+ printf("%s: could not send power command (error %d)\n",
DEVNAME(sc), err);
goto err;
}