svn commit: r240070 - head/sys/kern
Aleksandr Rybalko
ray at FreeBSD.org
Mon Sep 3 09:46:47 UTC 2012
Author: ray
Date: Mon Sep 3 09:46:46 2012
New Revision: 240070
URL: http://svn.freebsd.org/changeset/base/240070
Log:
Add missing braces.
Approved by: bschmidt (while mentor offline)
Pointed by: gcooper
Pointy hat to: ray
Modified:
head/sys/kern/subr_hints.c
Modified: head/sys/kern/subr_hints.c
==============================================================================
--- head/sys/kern/subr_hints.c Mon Sep 3 09:34:46 2012 (r240069)
+++ head/sys/kern/subr_hints.c Mon Sep 3 09:46:46 2012 (r240070)
@@ -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;
More information about the svn-src-head
mailing list