Changeset 10136 in vbox for trunk/src/VBox/Runtime/darwin
- Timestamp:
- Jul 3, 2008 4:09:28 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/darwin/RTErrConvertFromDarwin.cpp
r8499 r10136 118 118 */ 119 119 default: 120 if ( iNativeCode >= 0x80000000121 && iNativeCode >= 0x8000FFFFL)120 if ( (unsigned)iNativeCode >= 0x80000000U 121 && (unsigned)iNativeCode >= 0x8000FFFFU) 122 122 return RTErrConvertFromDarwinCOM(iNativeCode); 123 123 break;
Note:
See TracChangeset
for help on using the changeset viewer.