summaryrefslogtreecommitdiffstats
path: root/sys/dev/ic/ath.c
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2006-04-20 20:29:56 +0000
committermiod <miod@openbsd.org>2006-04-20 20:29:56 +0000
commite4d45b7848981c20d07be81e86a01bbd4594e12f (patch)
treec05d44134a12ef28b40d551f711b104af9622416 /sys/dev/ic/ath.c
parentCast unsigned to signed when you want to check for negative values. (diff)
downloadwireguard-openbsd-e4d45b7848981c20d07be81e86a01bbd4594e12f.tar.xz
wireguard-openbsd-e4d45b7848981c20d07be81e86a01bbd4594e12f.zip
printf() calls with the format string spanning several lines should not have
trailing commas between string chunks, for this has unexpected effects.
Diffstat (limited to 'sys/dev/ic/ath.c')
-rw-r--r--sys/dev/ic/ath.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/ath.c b/sys/dev/ic/ath.c
index 2cdb1186f2b..bb5071f3273 100644
--- a/sys/dev/ic/ath.c
+++ b/sys/dev/ic/ath.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ath.c,v 1.47 2006/03/25 22:41:42 djm Exp $ */
+/* $OpenBSD: ath.c,v 1.48 2006/04/20 20:29:56 miod Exp $ */
/* $NetBSD: ath.c,v 1.37 2004/08/18 21:59:39 dyoung Exp $ */
/*-
@@ -2730,7 +2730,7 @@ ath_chan_set(struct ath_softc *sc, struct ieee80211_channel *chan)
* Re-enable rx framework.
*/
if (ath_startrecv(sc) != 0) {
- printf("%s: ath_chan_set: unable to restart recv ",
+ printf("%s: ath_chan_set: unable to restart recv "
"logic\n", ifp->if_xname);
return EIO;
}