Changeset 85882 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Aug 24, 2020 9:35:04 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/RTFileQuerySectorSize-win.cpp
r85875 r85882 33 33 34 34 #include <iprt/assert.h> 35 #include <iprt/err core.h>35 #include <iprt/err.h> 36 36 #include <iprt/string.h> 37 37 … … 56 56 } 57 57 int rc = RTErrConvertFromWin32(GetLastError()); 58 AssertMsg Failed(("%d / %Rrc\n", GetLastError(), rc));58 AssertMsg(rc == VERR_IO_NOT_READY, ("%d / %Rrc\n", GetLastError(), rc)); 59 59 return rc; 60 60 }
Note:
See TracChangeset
for help on using the changeset viewer.