Add missing braces.

Approved by:	bschmidt (while mentor offline)
Pointed by:     gcooper
Pointy hat to:  ray
This commit is contained in:
ray 2012-09-03 09:46:46 +00:00
parent f93fc1d719
commit da392b2a99

View File

@ -72,10 +72,11 @@ sysctl_hintmode(SYSCTL_HANDLER_ARGS)
/* Migrate from static to dynamic hints */
switch (hintmode) {
case 0:
if (dynamic_kenv)
if (dynamic_kenv) {
/* Already here */
hintmode = value; /* XXX: Need we switch or not ? */
return (0);
}
from_kenv = 1;
cp = kern_envp;
break;