diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2005-07-18 02:43:28 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2005-07-18 02:43:28 +0000 |
commit | 1da0eb00b64cf96fafeda15abecc0ea97c01cfc7 (patch) | |
tree | 07ce3426901e09feb49ab2c3174d982a7fc02646 /sys/dev/ic/ath.c | |
parent | d682261e1331abf1c2f9fa2d157d5b8f51360fdd (diff) |
remove trailing newline in panic(9); ok millert@ and deraadt@
Diffstat (limited to 'sys/dev/ic/ath.c')
-rw-r--r-- | sys/dev/ic/ath.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/ath.c b/sys/dev/ic/ath.c index 7f8a59b2500..c1f0443932b 100644 --- a/sys/dev/ic/ath.c +++ b/sys/dev/ic/ath.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ath.c,v 1.29 2005/05/28 23:45:10 reyk Exp $ */ +/* $OpenBSD: ath.c,v 1.30 2005/07/18 02:43:26 fgsch Exp $ */ /* $NetBSD: ath.c,v 1.37 2004/08/18 21:59:39 dyoung Exp $ */ /*- @@ -655,7 +655,7 @@ ath_chan2flags(struct ieee80211com *ic, struct ieee80211_channel *chan) case IEEE80211_MODE_TURBO: return CHANNEL_T; default: - panic("%s: unsupported mode %d\n", __func__, mode); + panic("%s: unsupported mode %d", __func__, mode); return 0; } } @@ -2797,7 +2797,7 @@ ath_state_to_led(enum ieee80211_state state) case IEEE80211_S_RUN: return HAL_LED_RUN; default: - panic("%s: unknown 802.11 state %d\n", __func__, state); + panic("%s: unknown 802.11 state %d", __func__, state); return HAL_LED_INIT; } } |