Changeset 96159 in vbox for trunk/src/VBox/Runtime/common/err
- Timestamp:
- Aug 12, 2022 10:13:29 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 152965
- Location:
- trunk/src/VBox/Runtime/common/err
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/err/RTErrConvertFromErrno.cpp
r93115 r96159 154 154 #endif 155 155 #ifdef ERANGE 156 case ERANGE: return VERR_ INVALID_PARAMETER; /** @todo fix duplicate error */156 case ERANGE: return VERR_OUT_OF_RANGE; 157 157 #endif 158 158 #ifdef EDEADLK -
trunk/src/VBox/Runtime/common/err/RTErrConvertToErrno.cpp
r93115 r96159 156 156 #endif 157 157 #ifdef ERANGE 158 //case VERR_INVALID_PARAMETER: return ERANGE; 158 case VERR_OUT_OF_RANGE: return ERANGE; 159 case VERR_FLOAT_UNDERFLOW: return ERANGE; 160 case VWRN_FLOAT_UNDERFLOW: return ERANGE; 161 case VERR_FLOAT_OVERFLOW: return ERANGE; 162 case VWRN_FLOAT_OVERFLOW: return ERANGE; 159 163 #endif 160 164 #ifdef EDEADLK
Note:
See TracChangeset
for help on using the changeset viewer.