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:
parent
1bcf165ac6
commit
e33cc31630
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue