Changeset 77110 in vbox for trunk/src/VBox
- Timestamp:
- Feb 1, 2019 11:00:12 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/err/RTErrConvertFromErrno.cpp
r76553 r77110 37 37 38 38 39 RTDECL(int) RTErrConvertFromErrno( unsigned uNativeCode)39 RTDECL(int) RTErrConvertFromErrno(int iNativeCode) 40 40 { 41 41 /* very fast check for no error. */ 42 if ( uNativeCode == 0)42 if (iNativeCode == 0) 43 43 return VINF_SUCCESS; 44 44 … … 52 52 * by RTErrConvertToErrno. 53 53 */ 54 switch ( uNativeCode)54 switch (iNativeCode) 55 55 { /* Linux number */ 56 56 #ifdef EPERM
Note:
See TracChangeset
for help on using the changeset viewer.