diff options
author | Peter Hessler <phessler@cvs.openbsd.org> | 2018-05-23 19:52:04 +0000 |
---|---|---|
committer | Peter Hessler <phessler@cvs.openbsd.org> | 2018-05-23 19:52:04 +0000 |
commit | fa28d624105268c017f0027e3ca8583288449a90 (patch) | |
tree | 1a4c71f64578021a1c276caf5bc3970e4e89fb35 /sys | |
parent | caa32d4b6d357011bf18631374bef2bb82f6b908 (diff) |
add missing newlines for debug printfs
OK stsp@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/net80211/ieee80211_proto.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/net80211/ieee80211_proto.c b/sys/net80211/ieee80211_proto.c index 59076ccdd15..258408b1851 100644 --- a/sys/net80211/ieee80211_proto.c +++ b/sys/net80211/ieee80211_proto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ieee80211_proto.c,v 1.86 2018/04/29 08:35:28 stsp Exp $ */ +/* $OpenBSD: ieee80211_proto.c,v 1.87 2018/05/23 19:52:03 phessler Exp $ */ /* $NetBSD: ieee80211_proto.c,v 1.8 2004/04/30 23:58:20 dyoung Exp $ */ /*- @@ -1013,7 +1013,7 @@ justcleanup: switch (ostate) { case IEEE80211_S_INIT: if (ifp->if_flags & IFF_DEBUG) - printf("%s: invalid transition %s -> %s", + printf("%s: invalid transition %s -> %s\n", ifp->if_xname, ieee80211_state_name[ostate], ieee80211_state_name[nstate]); break; @@ -1058,7 +1058,7 @@ justcleanup: case IEEE80211_S_SCAN: case IEEE80211_S_ASSOC: if (ifp->if_flags & IFF_DEBUG) - printf("%s: invalid transition %s -> %s", + printf("%s: invalid transition %s -> %s\n", ifp->if_xname, ieee80211_state_name[ostate], ieee80211_state_name[nstate]); break; @@ -1080,7 +1080,7 @@ justcleanup: case IEEE80211_S_AUTH: case IEEE80211_S_RUN: if (ifp->if_flags & IFF_DEBUG) - printf("%s: invalid transition %s -> %s", + printf("%s: invalid transition %s -> %s\n", ifp->if_xname, ieee80211_state_name[ostate], ieee80211_state_name[nstate]); break; |