Changeset 13908 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Nov 6, 2008 11:53:47 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38915
- Location:
- trunk/src/VBox/Runtime/r3/os2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/os2/mp-os2.cpp
r9429 r13908 46 46 RTDECL(int) RTMpCpuIdToSetIndex(RTCPUID idCpu) 47 47 { 48 return idCpu < RTCPUSET_MAX_CPUS ? idCpu : -1;48 return idCpu < RTCPUSET_MAX_CPUS ? (int) idCpu : -1; 49 49 } 50 50 -
trunk/src/VBox/Runtime/r3/os2/rtProcInitExePath-os2.cpp
r11838 r13908 54 54 char *pszTmp; 55 55 int rc = rtPathFromNative(&pszTmp, pszPath); 56 AssertMsgRCReturn(rc, ("rc=%Rrc pszLink=\"%s\"\nhex: %.*Rhsx\n", rc, pszPath, cch ImageName, pszPath), rc);56 AssertMsgRCReturn(rc, ("rc=%Rrc pszLink=\"%s\"\nhex: %.*Rhsx\n", rc, pszPath, cchPath, pszPath), rc); 57 57 58 58 size_t cch = strlen(pszTmp);
Note:
See TracChangeset
for help on using the changeset viewer.