diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-04-20 20:29:57 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-04-20 20:29:57 +0000 |
commit | c6a06abcb61bbc239e1cfef78b711075b49da926 (patch) | |
tree | af48f43c2733af9f9f68fe531534834bd8f96ad4 /sys/dev/ic/ath.c | |
parent | 8ffaa3998341dba6c53482a18aedb87618c384e1 (diff) |
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.c | 4 |
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; } |