- Timestamp:
- May 2, 2022 10:46:02 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/CryptoUtils.cpp
r94771 r94777 30 30 SsmStream *pThis = static_cast<SsmStream *>(pvUser); 31 31 32 return RTVfsFileWriteAt(pThis->m_hVfsFile, offStream, pvBuf, cbToWrite, NULL /*pcbWritten*/);32 return RTVfsFileWriteAt(pThis->m_hVfsFile, (RTFOFF)offStream, pvBuf, cbToWrite, NULL /*pcbWritten*/); 33 33 } 34 34 … … 39 39 SsmStream *pThis = static_cast<SsmStream *>(pvUser); 40 40 41 return RTVfsFileReadAt(pThis->m_hVfsFile, offStream, pvBuf, cbToRead, pcbRead);41 return RTVfsFileReadAt(pThis->m_hVfsFile, (RTFOFF)offStream, pvBuf, cbToRead, pcbRead); 42 42 } 43 43 … … 48 48 SsmStream *pThis = static_cast<SsmStream *>(pvUser); 49 49 50 return RTVfsFileSeek(pThis->m_hVfsFile, offSeek, uMethod, poffActual);50 return RTVfsFileSeek(pThis->m_hVfsFile, (RTFOFF)offSeek, uMethod, poffActual); 51 51 } 52 52
Note:
See TracChangeset
for help on using the changeset viewer.