diff options
author | Denys Fedoryschenko <denys@visp.net.lb> | 2009-11-14 18:59:49 (GMT) |
---|---|---|
committer | Thomas Graf <tgraf@suug.ch> | 2009-12-07 15:23:48 (GMT) |
commit | 52510e7d394a1c8ee0a3aaf046db6199f0558c78 (patch) | |
tree | 72d52c2571174ff36cc526166dbdd7b714bd57c0 | |
parent | 8d2bb90726f75dfaf752de599886cb8bf15391bd (diff) | |
download | libnl-52510e7d394a1c8ee0a3aaf046db6199f0558c78.zip libnl-52510e7d394a1c8ee0a3aaf046db6199f0558c78.tar.gz libnl-52510e7d394a1c8ee0a3aaf046db6199f0558c78.tar.bz2 |
invalid comma cause segfault for nl-tctree-list, tbf.c
I notice segfault while running nl-tctree-list for tbf qdisc.
Patch that fix this typo is attached.
-rw-r--r-- | lib/route/sch/tbf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/route/sch/tbf.c b/lib/route/sch/tbf.c index 67ddaf6..29453e3 100644 --- a/lib/route/sch/tbf.c +++ b/lib/route/sch/tbf.c @@ -140,7 +140,7 @@ static void tbf_dump_details(struct rtnl_qdisc *qdisc, struct nl_dump_params *p) &clu); nl_dump_line(p, " peak-rate %.2f%s/s (%.0f%s) " - "bucket-size %.1f%s cell-size %.1f%s", + "bucket-size %.1f%s cell-size %.1f%s" "latency %.1f%s", pr, pru, prb, prbu, bs, bsu, cl, clu); } |