diff options
author | gavin <gavin@FreeBSD.org> | 2010-01-12 17:59:58 +0000 |
---|---|---|
committer | gavin <gavin@FreeBSD.org> | 2010-01-12 17:59:58 +0000 |
commit | 0c2da89ac473d10c99cb369963dc789d04986c15 (patch) | |
tree | f52412ec9c9567185e18aa60f11d73740d901597 /tools | |
parent | ca52a33d35801acbecacc860b4d4ef79fa67cb48 (diff) | |
download | FreeBSD-src-0c2da89ac473d10c99cb369963dc789d04986c15.zip FreeBSD-src-0c2da89ac473d10c99cb369963dc789d04986c15.tar.gz |
Spell "Hz" correctly wherever it is user-visible.
PR: bin/142566
Submitted by: N.J. Mann njm njm.me.uk
Approved by: ed (mentor)
MFC after: 2 weeks
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/ath/athdecode/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/tools/ath/athdecode/main.c b/tools/tools/ath/athdecode/main.c index e27c4e4..977ae14 100644 --- a/tools/tools/ath/athdecode/main.c +++ b/tools/tools/ath/athdecode/main.c @@ -125,13 +125,13 @@ opmark(FILE *fd, int i, const struct athregrec *r) fprintf(fd, "ar%uReset (done), OK", state.chipnum); break; case AH_MARK_CHIPRESET: - fprintf(fd, "ar%uChipReset, channel %u Mhz", state.chipnum, r->val); + fprintf(fd, "ar%uChipReset, channel %u MHz", state.chipnum, r->val); break; case AH_MARK_PERCAL: - fprintf(fd, "ar%uPerCalibration, channel %u Mhz", state.chipnum, r->val); + fprintf(fd, "ar%uPerCalibration, channel %u MHz", state.chipnum, r->val); break; case AH_MARK_SETCHANNEL: - fprintf(fd, "ar%uSetChannel, channel %u Mhz", state.chipnum, r->val); + fprintf(fd, "ar%uSetChannel, channel %u MHz", state.chipnum, r->val); break; case AH_MARK_ANI_RESET: switch (r->val) { |