Index: /trunk/src/VBox/Runtime/common/log/log.cpp
===================================================================
--- /trunk/src/VBox/Runtime/common/log/log.cpp	(revision 56568)
+++ /trunk/src/VBox/Runtime/common/log/log.cpp	(revision 56569)
@@ -301,5 +301,5 @@
     uint32_t    fFlag;                  /**< The flag value. */
     bool        fInverted;              /**< Inverse meaning? */
-} const s_aLogFlags[] =
+} const g_aLogFlags[] =
 {
     { "disabled",     sizeof("disabled"    ) - 1,   RTLOGFLAGS_DISABLED,            false },
@@ -2048,13 +2048,13 @@
 
         /* instruction. */
-        for (i = 0; i < RT_ELEMENTS(s_aLogFlags); i++)
-        {
-            if (!strncmp(pszValue, s_aLogFlags[i].pszInstr, s_aLogFlags[i].cchInstr))
+        for (i = 0; i < RT_ELEMENTS(g_aLogFlags); i++)
+        {
+            if (!strncmp(pszValue, g_aLogFlags[i].pszInstr, g_aLogFlags[i].cchInstr))
             {
-                if (fNo == s_aLogFlags[i].fInverted)
-                    pLogger->fFlags |= s_aLogFlags[i].fFlag;
+                if (fNo == g_aLogFlags[i].fInverted)
+                    pLogger->fFlags |= g_aLogFlags[i].fFlag;
                 else
-                    pLogger->fFlags &= ~s_aLogFlags[i].fFlag;
-                pszValue += s_aLogFlags[i].cchInstr;
+                    pLogger->fFlags &= ~g_aLogFlags[i].fFlag;
+                pszValue += g_aLogFlags[i].cchInstr;
                 break;
             }
@@ -2062,5 +2062,5 @@
 
         /* unknown instruction? */
-        if (i >= RT_ELEMENTS(s_aLogFlags))
+        if (i >= RT_ELEMENTS(g_aLogFlags))
         {
             AssertMsgFailed(("Invalid flags! unknown instruction %.20s\n", pszValue));
@@ -2174,10 +2174,10 @@
      */
     fFlags = pLogger->fFlags;
-    for (i = 0; i < RT_ELEMENTS(s_aLogFlags); i++)
-        if (    !s_aLogFlags[i].fInverted
-            ?   (s_aLogFlags[i].fFlag & fFlags)
-            :   !(s_aLogFlags[i].fFlag & fFlags))
-        {
-            size_t cchInstr = s_aLogFlags[i].cchInstr;
+    for (i = 0; i < RT_ELEMENTS(g_aLogFlags); i++)
+        if (    !g_aLogFlags[i].fInverted
+            ?   (g_aLogFlags[i].fFlag & fFlags)
+            :   !(g_aLogFlags[i].fFlag & fFlags))
+        {
+            size_t cchInstr = g_aLogFlags[i].cchInstr;
             if (cchInstr + fNotFirst + 1 > cchBuf)
             {
@@ -2190,5 +2190,5 @@
                 cchBuf--;
             }
-            memcpy(pszBuf, s_aLogFlags[i].pszInstr, cchInstr);
+            memcpy(pszBuf, g_aLogFlags[i].pszInstr, cchInstr);
             pszBuf += cchInstr;
             cchBuf -= cchInstr;
