Fix switch statement indentation in the FreeBSD kstat code
This is in preparation for some functional changes. Reviewed-by: Allan Jude <allan@klarasystems.com> Reviewed-by: Ryan Moeller <ryan@ixsystems.com> Signed-off-by: Mark Johnston <markj@FreeBSD.org> Closes #10950
This commit is contained in:
parent
4ce06f940e
commit
f664153078
|
@ -397,9 +397,7 @@ kstat_install_named(kstat_t *ksp)
|
||||||
default:
|
default:
|
||||||
panic("unsupported type: %d", typelast);
|
panic("unsupported type: %d", typelast);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -443,7 +441,6 @@ kstat_install(kstat_t *ksp)
|
||||||
panic("unsupported kstat type %d\n", ksp->ks_type);
|
panic("unsupported kstat type %d\n", ksp->ks_type);
|
||||||
}
|
}
|
||||||
ksp->ks_sysctl_root = root;
|
ksp->ks_sysctl_root = root;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in New Issue