Changeset 14959 in vbox for trunk/src/VBox/Main/MachineImpl.cpp
- Timestamp:
- Dec 3, 2008 9:25:17 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r14934 r14959 5084 5084 mHWData->mBootOrder [position] = DeviceType_Network; 5085 5085 else 5086 ComAssertMsgFailed (("Invalid device: %s \n", device));5086 ComAssertMsgFailed (("Invalid device: %s", device)); 5087 5087 } 5088 5088 } … … 6446 6446 default: 6447 6447 { 6448 ComAssertMsgFailedRet (("Invalid boot device: %d \n",6448 ComAssertMsgFailedRet (("Invalid boot device: %d", 6449 6449 mHWData->mBootOrder [pos]), 6450 6450 E_FAIL); … … 7727 7727 mIPCSem = ::CreateMutex (NULL, FALSE, mIPCSemName); 7728 7728 ComAssertMsgRet (mIPCSem, 7729 ("Cannot create IPC mutex '%ls', err=%d \n",7729 ("Cannot create IPC mutex '%ls', err=%d", 7730 7730 mIPCSemName.raw(), ::GetLastError()), 7731 7731 E_FAIL); … … 7736 7736 APIRET arc = ::DosCreateMutexSem ((PSZ) ipcSem.raw(), &mIPCSem, 0, FALSE); 7737 7737 ComAssertMsgRet (arc == NO_ERROR, 7738 ("Cannot create IPC mutex '%s', arc=%ld \n",7738 ("Cannot create IPC mutex '%s', arc=%ld", 7739 7739 ipcSem.raw(), arc), 7740 7740 E_FAIL);
Note:
See TracChangeset
for help on using the changeset viewer.