Changeset 57644 in vbox for trunk/src/VBox/Runtime/common/vfs
- Timestamp:
- Sep 7, 2015 1:49:38 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102534
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/vfs/vfsstdpipe.cpp
r57643 r57644 95 95 PRTVFSSTDPIPE pThis = (PRTVFSSTDPIPE)pvThis; 96 96 int rc; 97 AssertReturn(off < 0 || pThis->offFakePos == off, VERR_SEEK_ON_DEVICE);97 AssertReturn(off < 0 || pThis->offFakePos == (uint64_t)off, VERR_SEEK_ON_DEVICE); 98 98 99 99 NOREF(fBlocking); … … 149 149 PRTVFSSTDPIPE pThis = (PRTVFSSTDPIPE)pvThis; 150 150 int rc; 151 AssertReturn(off < 0 || pThis->offFakePos == off, VERR_SEEK_ON_DEVICE);151 AssertReturn(off < 0 || pThis->offFakePos == (uint64_t)off, VERR_SEEK_ON_DEVICE); 152 152 153 153 if (pSgBuf->cSegs == 1)
Note:
See TracChangeset
for help on using the changeset viewer.