Index: /trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp
===================================================================
--- /trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp	(revision 86877)
+++ /trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp	(revision 86878)
@@ -1160,5 +1160,5 @@
 
 #ifdef VBOX_WITH_VBOXSERVICE_DRMRESIZE
-	if (VbglR3DRMClientIsNeeded())
+    if (VbglR3DRMClientIsNeeded())
     {
         rc = VbglR3DRMClientStart();
Index: /trunk/src/VBox/Additions/x11/VBoxClient/display-svga-x11.cpp
===================================================================
--- /trunk/src/VBox/Additions/x11/VBoxClient/display-svga-x11.cpp	(revision 86877)
+++ /trunk/src/VBox/Additions/x11/VBoxClient/display-svga-x11.cpp	(revision 86878)
@@ -685,8 +685,10 @@
 static DECLCALLBACK(int) vbclSVGAInit(void)
 {
+    int rc;
+
     /* In 32-bit guests GAs build on our release machines causes an xserver hang.
      * So for 32-bit GAs we use our DRM client. */
 #if ARCH_BITS == 32
-    int rc = VbglR3DRMClientStart();
+    rc = VbglR3DRMClientStart();
     if (RT_FAILURE(rc))
         VBClLogError("Starting DRM resizing client (32-bit) failed with %Rrc\n", rc);
@@ -703,5 +705,5 @@
     if (isXwayland())
     {
-        int rc = VbglR3DRMClientStart();
+        rc = VbglR3DRMClientStart();
         if (RT_FAILURE(rc))
             VBClLogError("Starting DRM resizing client failed with %Rrc\n", rc);
