Changeset 97954 in vbox for trunk/include
- Timestamp:
- Jan 3, 2023 3:34:28 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VMMDevCoreTypes.h
r97953 r97954 520 520 { 521 521 AssertMsgReturnStmt(type == VMMDevHGCMParmType_32bit, ("type=-%d\n", type), 522 *pu32 = UINT32_MAX /* shut up gcc */, VERR_ INVALID_PARAMETER)522 *pu32 = UINT32_MAX /* shut up gcc */, VERR_WRONG_PARAMETER_TYPE) 523 523 *pu32 = u.value32; 524 524 return VINF_SUCCESS; … … 534 534 { 535 535 AssertMsgReturnStmt(type == VMMDevHGCMParmType_64bit, ("type=%d\n", type), 536 *pu64 = UINT32_MAX /* shut up gcc */, VERR_ INVALID_PARAMETER);536 *pu64 = UINT32_MAX /* shut up gcc */, VERR_WRONG_PARAMETER_TYPE); 537 537 *pu64 = u.value64; 538 538 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.