Changeset 95980 in vbox
- Timestamp:
- Aug 2, 2022 7:27:38 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/stream.cpp
r95979 r95980 488 488 : RTFILE_O_CREATE | RTFILE_O_WRITE; break; 489 489 case 'r': fOpen = RTFILE_O_OPEN | RTFILE_O_READ; break; 490 default: AssertMsg Return(chMode,("No main mode (a|r|w) specified in '%s'!\n", pszMode), VERR_INVALID_FLAGS);490 default: AssertMsgFailedReturn(("No main mode (a|r|w) specified in '%s'!\n", pszMode), VERR_INVALID_FLAGS); 491 491 } 492 492 AssertMsgReturn(!fExclusive || chMode == 'w', ("the 'x' flag is only allowed with 'w'! (%s)\n", pszMode),
Note:
See TracChangeset
for help on using the changeset viewer.