Index: /trunk/include/VBox/HostServices/GuestControlSvc.h
===================================================================
--- /trunk/include/VBox/HostServices/GuestControlSvc.h	(revision 30012)
+++ /trunk/include/VBox/HostServices/GuestControlSvc.h	(revision 30013)
@@ -175,5 +175,5 @@
     /**
      * Guest disconnected (terminated normally or due to a crash HGCM
-     * detected when calling service::clientDisconnect(). 
+     * detected when calling service::clientDisconnect().
      */
     GUEST_DISCONNECTED = 3,
Index: /trunk/include/VBox/feature.h
===================================================================
--- /trunk/include/VBox/feature.h	(revision 30012)
+++ /trunk/include/VBox/feature.h	(revision 30013)
Index: /trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibGuestCtrl.cpp
===================================================================
--- /trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibGuestCtrl.cpp	(revision 30012)
+++ /trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibGuestCtrl.cpp	(revision 30013)
@@ -257,5 +257,5 @@
     VbglHGCMParmUInt32Set(&Msg.context, 0); /** @todo Put this some header struct! */
     VbglHGCMParmUInt32Set(&Msg.pid, 0);
-    VbglHGCMParmUInt32Set(&Msg.handle, 0);    
+    VbglHGCMParmUInt32Set(&Msg.handle, 0);
     VbglHGCMParmUInt32Set(&Msg.flags, 0);
 
@@ -273,5 +273,5 @@
             Msg.pid.GetUInt32(puPID);
             Msg.handle.GetUInt32(puHandle);
-            Msg.flags.GetUInt32(puFlags);            
+            Msg.flags.GetUInt32(puFlags);
         }
     }
Index: /trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.cpp
===================================================================
--- /trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.cpp	(revision 30012)
+++ /trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.cpp	(revision 30013)
@@ -306,5 +306,5 @@
     /*
      * Ask the host service to cancel all pending requests so that we can
-     * shutdown properly here. 
+     * shutdown properly here.
      */
     if (g_GuestControlSvcClientID)
Index: /trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlExec.cpp
===================================================================
--- /trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlExec.cpp	(revision 30012)
+++ /trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlExec.cpp	(revision 30013)
@@ -753,5 +753,5 @@
     int  rc = VINF_SUCCESS;
 #ifdef RT_OS_WINDOWS
-    /* 
+    /*
      * If sysprep should be executed do this in the context of VBoxService, which
      * (usually, if started by SCM) has administrator rights. Because of that a UI
Index: /trunk/src/VBox/Additions/common/VBoxService/VBoxServiceCpuHotPlug.cpp
===================================================================
--- /trunk/src/VBox/Additions/common/VBoxService/VBoxServiceCpuHotPlug.cpp	(revision 30012)
+++ /trunk/src/VBox/Additions/common/VBoxService/VBoxServiceCpuHotPlug.cpp	(revision 30013)
@@ -109,5 +109,5 @@
 
 /** All possible combinations. */
-SYSFSCPUPATH g_aAcpiCpuPath[] = 
+SYSFSCPUPATH g_aAcpiCpuPath[] =
 {
     /** Level 1 */
Index: /trunk/src/VBox/Additions/common/VBoxService/VBoxServicePageSharing.cpp
===================================================================
--- /trunk/src/VBox/Additions/common/VBoxService/VBoxServicePageSharing.cpp	(revision 30012)
+++ /trunk/src/VBox/Additions/common/VBoxService/VBoxServicePageSharing.cpp	(revision 30013)
@@ -249,5 +249,5 @@
     if (RT_FAILURE(rc))
         VBoxServiceVerbose(3, "VbglR3RegisterSharedModule failed with %d\n", rc);
-    
+
 end:
     RTMemFree(pVersionInfo);
@@ -291,5 +291,5 @@
         /** todo when changing this make sure VBoxService.exe is excluded! */
         char *pszDot = strrchr(ModuleInfo.szModule, '.');
-        if (    pszDot 
+        if (    pszDot
             &&  (pszDot[1] == 'e' || pszDot[1] == 'E'))
             continue;   /* ignore executables for now. */
@@ -374,5 +374,5 @@
         PVOID                pBuffer = NULL;
         PRTL_PROCESS_MODULES pSystemModules;
-    
+
         NTSTATUS ret = ZwQuerySystemInformation(SystemModuleInformation, (PVOID)&cbBuffer, 0, &cbBuffer);
         if (!cbBuffer)
@@ -381,5 +381,5 @@
             goto skipkernelmodules;
         }
-        
+
         pBuffer = RTMemAllocZ(cbBuffer);
         if (!pBuffer)
@@ -392,5 +392,5 @@
             goto skipkernelmodules;
         }
-    
+
         pSystemModules = (PRTL_PROCESS_MODULES)pBuffer;
         for (unsigned i = 0; i < pSystemModules->NumberOfModules; i++)
@@ -401,5 +401,5 @@
 
             char *pszDot = strrchr(pSystemModules->Modules[i].FullPathName, '.');
-            if (    pszDot 
+            if (    pszDot
                 &&  (pszDot[1] == 'e' || pszDot[1] == 'E'))
                 continue;   /* ignore executables for now. */
@@ -534,5 +534,5 @@
 #if defined(RT_OS_WINDOWS) && !defined(TARGET_NT4)
     hNtdll = LoadLibrary("ntdll.dll");
-    
+
     if (hNtdll)
         ZwQuerySystemInformation = (PFNZWQUERYSYSTEMINFORMATION)GetProcAddress(hNtdll, "ZwQuerySystemInformation");
@@ -559,5 +559,5 @@
      * We have to use this feature as we can't simply execute all init code in our service process.
      *
-	 */
+     */
     int rc = RTSemEventMultiWait(g_PageSharingEvent, 60000);
     if (*pfShutdown)
Index: /trunk/src/VBox/Additions/common/VBoxService/VBoxServicePropCache.cpp
===================================================================
--- /trunk/src/VBox/Additions/common/VBoxService/VBoxServicePropCache.cpp	(revision 30012)
+++ /trunk/src/VBox/Additions/common/VBoxService/VBoxServicePropCache.cpp	(revision 30013)
@@ -310,5 +310,5 @@
             if ((pNode->fFlags & VBOXSERVICEPROPCACHEFLAG_TEMPORARY) == 0)
                 VBoxServiceWritePropF(pCache->uClientID, pNode->pszName, pNode->pszValueReset);
-    
+
             AssertPtr(pNode->pszName);
             RTStrFree(pNode->pszName);
@@ -316,9 +316,9 @@
             RTStrFree(pNode->pszValueReset);
             pNode->fFlags = 0;
-    
+
             PVBOXSERVICEVEPROPCACHEENTRY pNext = RTListNodeGetNext(&pNode->Node, VBOXSERVICEVEPROPCACHEENTRY, Node);
             RTListNodeRemove(&pNode->Node);
             RTMemFree(pNode);
-    
+
             if (pNext && RTListNodeIsLast(&pCache->ListEntries, &pNext->Node))
                 break;
Index: /trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo-win.cpp
===================================================================
--- /trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo-win.cpp	(revision 30012)
+++ /trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo-win.cpp	(revision 30013)
@@ -384,5 +384,5 @@
                               &enmOwnerType))
         {
-            VBoxServiceError("VMInfo/Users: Failed looking up account info for user '%ls': %ld!\n", 
+            VBoxServiceError("VMInfo/Users: Failed looking up account info for user '%ls': %ld!\n",
                              a_pUserInfo->wszUser, GetLastError());
         }
@@ -437,5 +437,5 @@
             }
         }
-    }   
+    }
 
     LsaFreeReturnBuffer(pSessionData);
Index: /trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp
===================================================================
--- /trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp	(revision 30012)
+++ /trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp	(revision 30013)
@@ -269,5 +269,5 @@
         VBoxServicePropCacheUpdate(&g_VMInfoPropCache, "/VirtualBox/GuestInfo/OS/NoLoggedInUsers", cUsersInList == 0 ? "true" : "false");
         g_cVMInfoLoggedInUsers = cUsersInList;
-    }    
+    }
     if (pszUserList)
         RTStrFree(pszUserList);
Index: /trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxAppleSim/ConsoleControl.h
===================================================================
--- /trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxAppleSim/ConsoleControl.h	(revision 30012)
+++ /trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxAppleSim/ConsoleControl.h	(revision 30013)
@@ -27,5 +27,5 @@
  * THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
  * WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
- * 
+ *
  * Module Name:
  *
Index: /trunk/src/VBox/Devices/Input/DevPS2.cpp
===================================================================
--- /trunk/src/VBox/Devices/Input/DevPS2.cpp	(revision 30012)
+++ /trunk/src/VBox/Devices/Input/DevPS2.cpp	(revision 30013)
@@ -293,5 +293,5 @@
     irq1_level = 0;
     irq12_level = 0;
-    
+
     /* Determine new OBF state, but only if OBF is clear. If OBF was already
      * set, we cannot risk changing the event type after an ISR potentially
@@ -316,6 +316,6 @@
             if (s->mode & KBD_MODE_MOUSE_INT)
                 irq12_level = 1;
-        } 
-        else 
+        }
+        else
         {   /* KBD_STAT_OBF set but KBD_STAT_MOUSE_OBF isn't. */
             if ((s->mode & KBD_MODE_KBD_INT) && !(s->mode & KBD_MODE_DISABLE_KBD))
Index: /trunk/src/VBox/Devices/Network/DevE1000.cpp
===================================================================
--- /trunk/src/VBox/Devices/Network/DevE1000.cpp	(revision 30012)
+++ /trunk/src/VBox/Devices/Network/DevE1000.cpp	(revision 30013)
@@ -2649,5 +2649,5 @@
  *        queuing thousands of items per second here in a normal transmit
  *        scenario.  Expect performance changes when fixing this! */
-#ifdef IN_RING3 
+#ifdef IN_RING3
             /* Signal that we have more receive descriptors avalable. */
             e1kWakeupReceive(pState->CTX_SUFF(pDevIns));
Index: /trunk/src/VBox/Devices/Network/slirp/bootp.c
===================================================================
--- /trunk/src/VBox/Devices/Network/slirp/bootp.c	(revision 30012)
+++ /trunk/src/VBox/Devices/Network/slirp/bootp.c	(revision 30013)
@@ -657,5 +657,5 @@
      */
     if (   !pData->fUseHostResolver
-           && (   pData->dnsLastUpdate == 0 
+           && (   pData->dnsLastUpdate == 0
                || curtime - pData->dnsLastUpdate > 60 * 1000)) /* one minute*/
     {
Index: /trunk/src/VBox/Devices/Network/slirp/misc.c
===================================================================
--- /trunk/src/VBox/Devices/Network/slirp/misc.c	(revision 30012)
+++ /trunk/src/VBox/Devices/Network/slirp/misc.c	(revision 30013)
@@ -352,5 +352,5 @@
     int fExhausted;
     RTCritSectEnter(&zone->csZone);
-    fExhausted = (zone->cur_items == zone->max_items); 
+    fExhausted = (zone->cur_items == zone->max_items);
     RTCritSectLeave(&zone->csZone);
     return fExhausted;
Index: /trunk/src/VBox/Devices/Network/slirp/socket.c
===================================================================
--- /trunk/src/VBox/Devices/Network/slirp/socket.c	(revision 30012)
+++ /trunk/src/VBox/Devices/Network/slirp/socket.c	(revision 30013)
@@ -729,5 +729,5 @@
              *  Note: Here we can't check if dnsproxy's sent initial request
              */
-            if (   pData->fUseDnsProxy 
+            if (   pData->fUseDnsProxy
                 && so->so_fport == RT_H2N_U16_C(53))
                 dnsproxy_answer(pData, so, m);
Index: /trunk/src/VBox/Devices/Serial/DevSerial.cpp
===================================================================
--- /trunk/src/VBox/Devices/Serial/DevSerial.cpp	(revision 30012)
+++ /trunk/src/VBox/Devices/Serial/DevSerial.cpp	(revision 30013)
@@ -307,5 +307,5 @@
          * hardware. */
         tmp_iir = UART_IIR_CTI;
-    } else if (   (s->ier & UART_IER_RDI) 
+    } else if (   (s->ier & UART_IER_RDI)
                && (s->lsr & UART_LSR_DR)
                && (   !(s->fcr & UART_FCR_FE)
Index: /trunk/src/VBox/Devices/Storage/ATAController.cpp
===================================================================
--- /trunk/src/VBox/Devices/Storage/ATAController.cpp	(revision 30012)
+++ /trunk/src/VBox/Devices/Storage/ATAController.cpp	(revision 30013)
@@ -5149,5 +5149,5 @@
      * required as well as optional.
      */
-    
+
     pIf->pDrvBase = pDrvBase;
     if (pDrvBase)
Index: /trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
===================================================================
--- /trunk/src/VBox/Devices/VMMDev/VMMDev.cpp	(revision 30012)
+++ /trunk/src/VBox/Devices/VMMDev/VMMDev.cpp	(revision 30013)
@@ -1773,5 +1773,5 @@
             {
                 pRequestHeader->rc = PGMR3SharedModuleRegister(PDMDevHlpGetVM(pDevIns), pReqModule->enmGuestOS, pReqModule->szName, pReqModule->szVersion,
-                                                               pReqModule->GCBaseAddr, pReqModule->cbModule,                                                               
+                                                               pReqModule->GCBaseAddr, pReqModule->cbModule,
                                                                pReqModule->cRegions, pReqModule->aRegions);
             }
@@ -1789,5 +1789,5 @@
             else
             {
-                pRequestHeader->rc = PGMR3SharedModuleUnregister(PDMDevHlpGetVM(pDevIns), pReqModule->szName, pReqModule->szVersion, 
+                pRequestHeader->rc = PGMR3SharedModuleUnregister(PDMDevHlpGetVM(pDevIns), pReqModule->szName, pReqModule->szVersion,
                                                                  pReqModule->GCBaseAddr, pReqModule->cbModule);
             }
Index: /trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp	(revision 30012)
+++ /trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp	(revision 30013)
@@ -70,5 +70,5 @@
              "                            [--arguments \"<arguments>\"]\n"
              "                            [--environment \"<NAME>=<VALUE> [<NAME>=<VALUE>]\"]\n"
-             "                            [--flags <flags>] [--timeout <msec>]\n"             
+             "                            [--flags <flags>] [--timeout <msec>]\n"
              "                            [--verbose] [--wait-for exit,stdout,stderr||]\n"
              "\n");
Index: /trunk/src/VBox/HostDrivers/VBoxNetFlt/win/notifyobj/VBoxNetFltNotify.rc
===================================================================
--- /trunk/src/VBox/HostDrivers/VBoxNetFlt/win/notifyobj/VBoxNetFltNotify.rc	(revision 30012)
+++ /trunk/src/VBox/HostDrivers/VBoxNetFlt/win/notifyobj/VBoxNetFltNotify.rc	(revision 30013)
@@ -54,4 +54,2 @@
 END
 
-
-
Index: /trunk/src/VBox/HostServices/GuestControl/service.cpp
===================================================================
--- /trunk/src/VBox/HostServices/GuestControl/service.cpp	(revision 30012)
+++ /trunk/src/VBox/HostServices/GuestControl/service.cpp	(revision 30013)
@@ -440,5 +440,5 @@
     {
         if (itCall->mClientID == u32ClientID)
-        {       
+        {
             itCall = mClientWaiterList.erase(itCall);
         }
Index: /trunk/src/VBox/Main/KeyboardImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/KeyboardImpl.cpp	(revision 30012)
+++ /trunk/src/VBox/Main/KeyboardImpl.cpp	(revision 30013)
@@ -170,5 +170,5 @@
     if (!pUpPort)
         return rc;
-    
+
     int vrc = pUpPort->pfnPutEvent(pUpPort, (uint8_t)scancode);
 
Index: /trunk/src/VBox/Main/glue/tests/Makefile.kmk
===================================================================
--- /trunk/src/VBox/Main/glue/tests/Makefile.kmk	(revision 30012)
+++ /trunk/src/VBox/Main/glue/tests/Makefile.kmk	(revision 30013)
@@ -27,5 +27,5 @@
  JACOB_JAR=$(JACOB_DIR)/jacob.jar
  CLASSPATH += $(JACOB_JAR)$(SEP)
- JAVA_ARGS += -Djava.library.path=$(JACOB_DIR) 
+ JAVA_ARGS += -Djava.library.path=$(JACOB_DIR)
 endif
 
@@ -38,5 +38,5 @@
 endif
 
-JAVA_ARGS += -Dvbox.home=$(VBOX_BIN) 
+JAVA_ARGS += -Dvbox.home=$(VBOX_BIN)
 CLASSPATH  := $(CLASSPATH)$(VBOX_JAR)$(SEP).
 
Index: /trunk/src/VBox/Main/include/VirtualBoxErrorInfoImpl.h
===================================================================
--- /trunk/src/VBox/Main/include/VirtualBoxErrorInfoImpl.h	(revision 30012)
+++ /trunk/src/VBox/Main/include/VirtualBoxErrorInfoImpl.h	(revision 30013)
@@ -60,18 +60,18 @@
 
     STDMETHOD(GetTypeInfo)(UINT iInfo, LCID Lcid, ITypeInfo **ppTypeInfo)
-	{
+    {
         return idi::GetTypeInfo(iInfo, Lcid, ppTypeInfo);
-	}
+    }
 
-	STDMETHOD(GetIDsOfNames)(REFIID rIID, LPOLESTR *papwszNames, UINT cNames, LCID Lcid, DISPID *paDispIDs)
-	{
+    STDMETHOD(GetIDsOfNames)(REFIID rIID, LPOLESTR *papwszNames, UINT cNames, LCID Lcid, DISPID *paDispIDs)
+    {
         return idi::GetIDsOfNames(rIID, papwszNames, cNames, Lcid, paDispIDs);
-	}
+    }
 
-	STDMETHOD(Invoke)(DISPID idDispMember, REFIID rIID, LCID Lcid, WORD fw, DISPPARAMS *pDispParams,
+    STDMETHOD(Invoke)(DISPID idDispMember, REFIID rIID, LCID Lcid, WORD fw, DISPPARAMS *pDispParams,
                       VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *piErrArg)
-	{
-		return idi::Invoke(idDispMember, rIID, Lcid, fw, pDispParams, pVarResult, pExcepInfo, piErrArg);
-	}
+    {
+        return idi::Invoke(idDispMember, rIID, Lcid, fw, pDispParams, pVarResult, pExcepInfo, piErrArg);
+    }
 
 #else // defined(VBOX_WITH_XPCOM)
Index: /trunk/src/VBox/Runtime/r0drv/nt/initterm-r0drv-nt.cpp
===================================================================
--- /trunk/src/VBox/Runtime/r0drv/nt/initterm-r0drv-nt.cpp	(revision 30012)
+++ /trunk/src/VBox/Runtime/r0drv/nt/initterm-r0drv-nt.cpp	(revision 30013)
@@ -185,5 +185,5 @@
             g_cbrtNtPbQuantumEnd     = 1;
             g_offrtNtPbDpcQueueDepth = 0x19e0 + 0xc;
-        }        
+        }
         else if (   BuildNumber == 3790                         /* Server 2003 SP2 */
                  && !memcmp(&pbPrcb[0xb60], &u.szVendor[0], 4*3))
Index: /trunk/src/VBox/Runtime/r0drv/solaris/semmutex-r0drv-solaris.c
===================================================================
--- /trunk/src/VBox/Runtime/r0drv/solaris/semmutex-r0drv-solaris.c	(revision 30012)
+++ /trunk/src/VBox/Runtime/r0drv/solaris/semmutex-r0drv-solaris.c	(revision 30013)
@@ -387,3 +387,2 @@
 }
 
-
Index: /trunk/src/VBox/Runtime/r3/win/RTSystemQueryDmiString-win.cpp
===================================================================
--- /trunk/src/VBox/Runtime/r3/win/RTSystemQueryDmiString-win.cpp	(revision 30012)
+++ /trunk/src/VBox/Runtime/r3/win/RTSystemQueryDmiString-win.cpp	(revision 30013)
@@ -60,5 +60,5 @@
                                    EOAC_NONE,                   /* Additional capabilities. */
                                    NULL);                       /* Reserved. */
-        if (hrc == RPC_E_TOO_LATE) 
+        if (hrc == RPC_E_TOO_LATE)
             hrc = S_OK;
     }
Index: /trunk/src/VBox/Runtime/r3/win/process-win.cpp
===================================================================
--- /trunk/src/VBox/Runtime/r3/win/process-win.cpp	(revision 30012)
+++ /trunk/src/VBox/Runtime/r3/win/process-win.cpp	(revision 30013)
@@ -529,8 +529,8 @@
         HANDLE hTokenLogon = INVALID_HANDLE_VALUE;
         fRc = LogonUserW(pwszUser,
-                         /* 
+                         /*
                           * Because we have to deal with http://support.microsoft.com/kb/245683
                           * for NULL domain names when running on NT4 here, pass an empty string if so.
-                          * However, passing FQDNs should work! 
+                          * However, passing FQDNs should work!
                           */
                          ((DWORD)(LOBYTE(LOWORD(GetVersion()))) < 5)  /* < Windows 2000. */
@@ -657,5 +657,5 @@
                 break;
 
-            case ERROR_PASSWORD_EXPIRED:            
+            case ERROR_PASSWORD_EXPIRED:
             case ERROR_ACCOUNT_RESTRICTION: /* See: http://support.microsoft.com/kb/303846/ */
                 rc = VERR_LOGON_FAILURE;
Index: /trunk/src/VBox/VMM/PGMPool.cpp
===================================================================
--- /trunk/src/VBox/VMM/PGMPool.cpp	(revision 30012)
+++ /trunk/src/VBox/VMM/PGMPool.cpp	(revision 30013)
@@ -754,5 +754,5 @@
      */
     for (unsigned i = 0; i < RT_ELEMENTS(pPool->aIdxDirtyPages); i++)
-	{
+    {
         PPGMPOOLPAGE pPage;
         unsigned     idxPage;
@@ -777,5 +777,5 @@
 
         pPool->aIdxDirtyPages[i] = NIL_PGMPOOL_IDX;
-	}
+    }
 
     /* Clear all dirty pages. */
Index: /trunk/src/VBox/VMM/PGMSharedPage.cpp
===================================================================
--- /trunk/src/VBox/VMM/PGMSharedPage.cpp	(revision 30012)
+++ /trunk/src/VBox/VMM/PGMSharedPage.cpp	(revision 30013)
@@ -56,5 +56,5 @@
 
     Log(("PGMR3SharedModuleRegister family=%d name=%s version=%s base=%RGv size=%x cRegions=%d\n", enmGuestOS, pszModuleName, pszVersion, GCBaseAddr, cbModule, cRegions));
-          
+
     /* Sanity check. */
     AssertReturn(cRegions < VMMDEVSHAREDREGIONDESC_MAX, VERR_INVALID_PARAMETER);
@@ -107,5 +107,5 @@
     pReq = (PGMMUNREGISTERSHAREDMODULEREQ)RTMemAllocZ(sizeof(*pReq));
     AssertReturn(pReq, VERR_NO_MEMORY);
-    
+
     pReq->GCBaseAddr    = GCBaseAddr;
     pReq->cbModule      = cbModule;
@@ -120,5 +120,5 @@
     RTMemFree(pReq);
     return rc;
-#else 
+#else
     return VERR_NOT_IMPLEMENTED;
 #endif
@@ -154,5 +154,5 @@
  */
 static DECLCALLBACK(void) pgmR3CheckSharedModulesHelper(PVM pVM)
-{   
+{
     /* We must stall other VCPUs as we'd otherwise have to send IPI flush commands for every single change we make. */
     int rc = VMMR3EmtRendezvous(pVM, VMMEMTRENDEZVOUS_FLAGS_TYPE_ONCE, pgmR3SharedModuleRegRendezvous, NULL);
@@ -172,5 +172,5 @@
     /* Queue the actual registration as we are under the IOM lock right now. Perform this operation on the way out. */
     return VMR3ReqCallNoWait(pVM, VMMGetCpuId(pVM), (PFNRT)pgmR3CheckSharedModulesHelper, 1, pVM);
-#else 
+#else
     return VERR_NOT_IMPLEMENTED;
 #endif
Index: /trunk/src/VBox/VMM/VMMR0/PGMR0SharedPage.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR0/PGMR0SharedPage.cpp	(revision 30012)
+++ /trunk/src/VBox/VMM/VMMR0/PGMR0SharedPage.cpp	(revision 30013)
@@ -1,3 +1,3 @@
-/* $Id: PGMR0.cpp 61539 2010-05-12 15:11:09Z sandervl $ */
+/* $Id$ */
 /** @file
  * PGM - Page Manager and Monitor, Ring-0.
@@ -115,5 +115,5 @@
             if (RT_FAILURE(rc))
                 break;
-                
+
             for (unsigned i = 0; i < idxPage; i++)
             {
