Changeset 40137 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Feb 15, 2012 4:24:51 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76288
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dvm/dvm.cpp
r40027 r40137 483 483 PRTDVMVOLUMEINTERNAL pVol; 484 484 bool fVolFound = false; 485 size_t cbIntersect;485 uint64_t cbIntersect; 486 486 uint64_t offVol; 487 487 -
trunk/src/VBox/Runtime/common/dvm/dvmbsdlabel.cpp
r40085 r40137 375 375 pVol->pBsdPartitionEntry = pBsdPartitionEntry; 376 376 pVol->offStart = (uint64_t)pBsdPartitionEntry->offSectorStart * pThis->DiskLabel.cbSector; 377 pVol->cbVolume = pBsdPartitionEntry->cSectors * pThis->DiskLabel.cbSector;377 pVol->cbVolume = (uint64_t)pBsdPartitionEntry->cSectors * pThis->DiskLabel.cbSector; 378 378 379 379 *phVolFmt = pVol; … … 469 469 uint64_t offStart, size_t cbRange, 470 470 uint64_t *poffVol, 471 size_t *pcbIntersect)471 uint64_t *pcbIntersect) 472 472 { 473 473 bool fIntersect = false; -
trunk/src/VBox/Runtime/common/dvm/dvmgpt.cpp
r40027 r40137 487 487 uint64_t offStart, size_t cbRange, 488 488 uint64_t *poffVol, 489 size_t *pcbIntersect)489 uint64_t *pcbIntersect) 490 490 { 491 491 bool fIntersect = false; -
trunk/src/VBox/Runtime/common/dvm/dvmmbr.cpp
r40027 r40137 356 356 uint64_t offStart, size_t cbRange, 357 357 uint64_t *poffVol, 358 size_t *pcbIntersect)358 uint64_t *pcbIntersect) 359 359 { 360 360 bool fIntersect = false; -
trunk/src/VBox/Runtime/include/internal/dvm.h
r40028 r40137 215 215 uint64_t offStart, size_t cbRange, 216 216 uint64_t *poffVol, 217 size_t *pcbIntersect);217 uint64_t *pcbIntersect); 218 218 219 219 /**
Note:
See TracChangeset
for help on using the changeset viewer.