Skip to content

Commit

Permalink
typo fix: "Mbps" should be just "bps".
Browse files Browse the repository at this point in the history
  • Loading branch information
kjc committed Dec 29, 2000
1 parent 15b3b89 commit 26a11c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kame/kame/altqstat/qdisc_cbq.c
@@ -1,4 +1,4 @@
/* $KAME: qdisc_cbq.c,v 1.2 2000/10/18 09:15:16 kjc Exp $ */ /* $KAME: qdisc_cbq.c,v 1.3 2000/12/29 06:39:27 kjc Exp $ */
/* /*
* Copyright (C) 1999-2000 * Copyright (C) 1999-2000
* Sony Computer Science Laboratories, Inc. All rights reserved. * Sony Computer Science Laboratories, Inc. All rights reserved.
Expand Down Expand Up @@ -121,8 +121,8 @@ cbq_stat_loop(int fd, const char *ifname, int count, int interval)
printf(" offtime: %d [us] wrr_allot: %d bytes\n", printf(" offtime: %d [us] wrr_allot: %d bytes\n",
sp->offtime, sp->wrr_allot); sp->offtime, sp->wrr_allot);
printf("\tnsPerByte: %d", sp->ns_per_byte); printf("\tnsPerByte: %d", sp->ns_per_byte);
printf("\t(%s Mbps),", rate2str(flow_bps)); printf("\t(%sbps),", rate2str(flow_bps));
printf("\tMeasured: %s [Mbps]\n", printf("\tMeasured: %s [bps]\n",
rate2str(calc_rate(sp->xmit_cnt.bytes, rate2str(calc_rate(sp->xmit_cnt.bytes,
lp->xmit_cnt.bytes, sec))); lp->xmit_cnt.bytes, sec)));
printf("\tpkts: %llu,\tbytes: %llu\n", printf("\tpkts: %llu,\tbytes: %llu\n",
Expand Down

0 comments on commit 26a11c3

Please sign in to comment.