diff options
author | Jonathan McCrohan <jmccrohan@gmail.com> | 2018-02-18 21:31:59 +0000 |
---|---|---|
committer | Jonathan McCrohan <jmccrohan@gmail.com> | 2018-02-18 21:31:59 +0000 |
commit | 1fc41b776f712f321c1f355d391c6a5eaf79ebfa (patch) | |
tree | d8f3b16ac8fef459fa99e423670e9d00b9ae7bdf /iw_nl80211.c | |
parent | 5744c3a0214950433c3a4375798c1c8eba1b398c (diff) | |
download | wavemon-1fc41b776f712f321c1f355d391c6a5eaf79ebfa.tar.gz |
New upstream version 0.8.2upstream/0.8.2
Diffstat (limited to '')
-rw-r--r-- | iw_nl80211.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw_nl80211.c b/iw_nl80211.c index 5b9c562..339e58b 100644 --- a/iw_nl80211.c +++ b/iw_nl80211.c @@ -128,7 +128,7 @@ void parse_bitrate(struct nlattr *bitrate_attr, char *buf, int buflen) rate = nla_get_u16(rinfo[NL80211_RATE_INFO_BITRATE]); if (rate > 0) pos += snprintf(pos, buflen - (pos - buf), - "%d.%d MBit/s", rate / 10, rate % 10); + "%d.%d Mbit/s", rate / 10, rate % 10); if (rinfo[NL80211_RATE_INFO_MCS]) pos += snprintf(pos, buflen - (pos - buf), |