Index: /trunk/src/VBox/HostDrivers/Support/SUPR3HardenedVerify.cpp
===================================================================
--- /trunk/src/VBox/HostDrivers/Support/SUPR3HardenedVerify.cpp	(revision 66626)
+++ /trunk/src/VBox/HostDrivers/Support/SUPR3HardenedVerify.cpp	(revision 66627)
@@ -1467,5 +1467,5 @@
         && pFsObjState->Stat.st_gid != 0)
     {
-#ifdef RT_OS_DARWIN
+# ifdef RT_OS_DARWIN
         /* HACK ALERT: On Darwin /Applications is root:admin with admin having
            full access. So, to work around we relax the hardening a bit and
@@ -1474,5 +1474,5 @@
         bool fBad = !fRelaxed || pFsObjState->Stat.st_gid != 80 /*admin*/ || suplibHardenedStrCmp(pszPath, "/Applications");
 
-#elif defined(RT_OS_FREEBSD)
+# elif defined(RT_OS_FREEBSD)
         /* HACK ALERT: PC-BSD 9 has group-writable /usr/pib directory which is
            similar to /Applications on OS X (see above).
@@ -1482,5 +1482,5 @@
         bool fBad = !fRelaxed || pFsObjState->Stat.st_gid != 5 /*operator*/ || suplibHardenedStrCmp(pszPath, "/usr/pbi");
         NOREF(fRelaxed);
-#elif defined(RT_OS_SOLARIS)
+# elif defined(RT_OS_SOLARIS)
         /* HACK ALERT: Solaris has group-writable /usr/lib/iconv directory from
            which the appropriate module is loaded.
@@ -1489,8 +1489,8 @@
         /** @todo dynamically resolve the bin group? */
         bool fBad = !fRelaxed || pFsObjState->Stat.st_gid != 2 /*bin*/ || suplibHardenedStrCmp(pszPath, "/usr/lib/iconv");
-#else
+# else
         NOREF(fRelaxed);
         bool fBad = true;
-#endif
+# endif
         if (fBad)
             return supR3HardenedSetError3(VERR_SUPLIB_WRITE_NON_SYS_GROUP, pErrInfo,
