Changeset 18440 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Mar 28, 2009 2:57:12 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 45252
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DrvHostBase.cpp
r18436 r18440 150 150 const uint32_t LBA = off / pThis->cbBlock; 151 151 AssertReturn(!(off % pThis->cbBlock), VERR_INVALID_PARAMETER); 152 const uint32_tcbRead32 = (uint32_t)cbRead32;152 uint32_t cbRead32 = (uint32_t)cbRead32; 153 153 const uint32_t cBlocks = cbRead32 / pThis->cbBlock; 154 154 AssertReturn(!(cbRead % pThis->cbBlock), VERR_INVALID_PARAMETER);
Note:
See TracChangeset
for help on using the changeset viewer.