sch_tbf: Remove bogus semicolon in if() conditional.

Fixes: 49b499718f ("net: sched: make default fifo qdiscs appear in the dump")
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
David S. Miller 2017-03-13 00:00:03 -07:00
parent 1bcf165ac6
commit e33cc31630
1 changed files with 1 additions and 1 deletions

View File

@ -396,7 +396,7 @@ static int tbf_change(struct Qdisc *sch, struct nlattr *opt)
q->qdisc->qstats.backlog);
qdisc_destroy(q->qdisc);
q->qdisc = child;
if (child != &noop_qdisc);
if (child != &noop_qdisc)
qdisc_hash_add(child, true);
}
q->limit = qopt->limit;