- Timestamp:
- Oct 22, 2016 2:50:53 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DrvHostDVD.cpp
r64360 r64361 613 613 { 614 614 if (i * cbSector > SCSI_MAX_BUFFER_SIZE) 615 cReqSectors = SCSI_MAX_BUFFER_SIZE / cbSector;615 cReqSectors = SCSI_MAX_BUFFER_SIZE / (uint32_t)cbSector; 616 616 else 617 617 cReqSectors = i; 618 uint32_t cbCurrTX = cbSector * cReqSectors;618 uint32_t cbCurrTX = (uint32_t)cbSector * cReqSectors; 619 619 switch (pbCdb[0]) 620 620 {
Note:
See TracChangeset
for help on using the changeset viewer.