aboutsummaryrefslogtreecommitdiffstats
path: root/iw_nl80211.c
diff options
context:
space:
mode:
Diffstat (limited to 'iw_nl80211.c')
-rw-r--r--iw_nl80211.c2
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),