Changeset 13837 in vbox for trunk/src/VBox/Devices/Serial
- Timestamp:
- Nov 5, 2008 2:54:02 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 38828
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Serial/DrvHostSerial.cpp
r13663 r13837 1094 1094 /* Open again to make use after suspend possible again. */ 1095 1095 rc = RTFileOpen(&pData->DeviceFile, pData->pszDevicePath, RTFILE_O_OPEN | RTFILE_O_READWRITE); 1096 AssertMsgRC(rc, ("Opening device file again failed rc=% Vrc\n", rc));1096 AssertMsgRC(rc, ("Opening device file again failed rc=%Rrc\n", rc)); 1097 1097 1098 1098 if (RT_FAILURE(rc)) 1099 1099 PDMDrvHlpVMSetRuntimeError(pDrvIns, false, "DrvHostSerialFail", 1100 N_("Opening failed for serial host device '%s' (% Vrc). The device will not work"),1100 N_("Opening failed for serial host device '%s' (%Rrc). The device will not work"), 1101 1101 pData->pszDevicePath, rc); 1102 1102 # endif … … 1105 1105 if (RT_FAILURE(rc)) 1106 1106 PDMDrvHlpVMSetRuntimeError(pDrvIns, false, "DrvHostSerialFail", 1107 N_("Suspending serial monitor thread failed for serial device '%s' (% Vrc). The shutdown may take longer than expected"),1107 N_("Suspending serial monitor thread failed for serial device '%s' (%Rrc). The shutdown may take longer than expected"), 1108 1108 pThis->pszDevicePath, RTErrConvertFromErrno(rc)); 1109 1109
Note:
See TracChangeset
for help on using the changeset viewer.