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;
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to