- Timestamp:
- Apr 19, 2020 1:13:00 AM (5 years ago)
- Location:
- trunk/src/VBox/Additions/common/VBoxService
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/Makefile.kmk
r82968 r83822 88 88 $(if $(VBOX_WITH_HGCM),VBOX_WITH_HGCM,) 89 89 90 VBoxService_DEFS += \ 91 VBOX_BUILD_TARGET=\"$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)\" 90 ifdef VBOX_WITH_AUTOMATIC_DEFS_QUOTING 91 VBoxService_DEFS += VBOX_BUILD_TARGET="$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)" 92 else 93 VBoxService_DEFS += VBOX_BUILD_TARGET=\"$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)\" 94 endif 92 95 VBoxService_DEFS.win += _WIN32_WINNT=0x0501 93 96 VBoxService_DEFS.os2 = VBOX_WITH_HGCM -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceAutoMount.cpp
r83718 r83822 885 885 for (char chDrive = 'Z'; chDrive >= 'A'; chDrive--) 886 886 { 887 RTUTF16 const wszMountPoint[4] = { chDrive, ':', '\0', '\0' };887 RTUTF16 const wszMountPoint[4] = { (RTUTF16)chDrive, ':', '\0', '\0' }; 888 888 RTUTF16 wszTargetPath[RTPATH_MAX]; 889 889 DWORD const cwcResult = QueryDosDeviceW(wszMountPoint, wszTargetPath, RT_ELEMENTS(wszTargetPath)); … … 1432 1432 */ 1433 1433 Assert(RT_C_IS_UPPER(pEntry->pszActualMountPoint[0]) && pEntry->pszActualMountPoint[1] == ':' && pEntry->pszActualMountPoint[2] == '\0'); 1434 RTUTF16 wszDrive[4] = { pEntry->pszActualMountPoint[0], ':', '\0', '\0' };1434 RTUTF16 wszDrive[4] = { (RTUTF16)pEntry->pszActualMountPoint[0], ':', '\0', '\0' }; 1435 1435 1436 1436 RTUTF16 wszPrefixedName[RTPATH_MAX]; … … 1860 1860 #ifdef RT_OS_WINDOWS 1861 1861 Assert(RT_C_IS_UPPER(pszMountPoint[0]) && pszMountPoint[1] == ':' && pszMountPoint[2] == '\0'); 1862 RTUTF16 const wszDrive[4] = { pszMountPoint[0], ':', '\0', '\0' };1862 RTUTF16 const wszDrive[4] = { (RTUTF16)pszMountPoint[0], ':', '\0', '\0' }; 1863 1863 DWORD dwErr = WNetCancelConnection2W(wszDrive, 0 /*dwFlags*/, FALSE /*fForce*/); 1864 1864 if (dwErr == NO_ERROR) -
trunk/src/VBox/Additions/common/VBoxService/VBoxServicePageSharing.cpp
r82968 r83822 499 499 pRec = &pModule->Core; 500 500 } 501 bool ret = RTAvlPVInsert(&pNewTree, pRec);502 Assert( ret); NOREF(ret);501 bool fRet = RTAvlPVInsert(&pNewTree, pRec); 502 Assert(fRet); NOREF(fRet); 503 503 } 504 504 }
Note:
See TracChangeset
for help on using the changeset viewer.