Small style fix in ctl.c

This commit is contained in:
Qi Wang 2017-03-01 14:43:35 -08:00 committed by Qi Wang
parent a8c9e9c651
commit aa1de06e3a

View File

@ -943,8 +943,7 @@ ctl_byname(tsd_t *tsd, const char *name, void *oldp, size_t *oldlenp,
node = ctl_named_node(nodes[depth-1]);
if (node != NULL && node->ctl) {
ret = node->ctl(tsd, mib, depth, oldp, oldlenp, newp, newlen);
}
else {
} else {
/* The name refers to a partial path through the ctl tree. */
ret = ENOENT;
}