mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Remove unnecessary assignment.
Found by: PVS-Studio
This commit is contained in:
parent
2f4a73322e
commit
9935c65a28
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=316819
1 changed files with 1 additions and 1 deletions
|
@ -4493,7 +4493,7 @@ msk_sysctl_node(struct msk_if_softc *sc_if)
|
|||
|
||||
tree = SYSCTL_ADD_NODE(ctx, child, OID_AUTO, "stats", CTLFLAG_RD,
|
||||
NULL, "MSK Statistics");
|
||||
schild = child = SYSCTL_CHILDREN(tree);
|
||||
schild = SYSCTL_CHILDREN(tree);
|
||||
tree = SYSCTL_ADD_NODE(ctx, schild, OID_AUTO, "rx", CTLFLAG_RD,
|
||||
NULL, "MSK RX Statistics");
|
||||
child = SYSCTL_CHILDREN(tree);
|
||||
|
|
Loading…
Reference in a new issue