Changeset 21008 in vbox
- Timestamp:
- Jun 28, 2009 8:41:46 PM (15 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/Devices/Storage/VHDHDDCore.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/VHDHDDCore.cpp
r21007 r21008 915 915 DECLINLINE(bool) vhdBlockBitmapSectorContainsData(PVHDIMAGE pImage, uint32_t cBlockBitmapEntry) 916 916 { 917 uint32_t iBitmap = (cBlockBitmapEntry / 8) & ~3; /* Byte in the block bitmap. */917 uint32_t iBitmap = (cBlockBitmapEntry / 8); /* Byte in the block bitmap. */ 918 918 919 919 /* … … 935 935 DECLINLINE(void) vhdBlockBitmapSectorSet(PVHDIMAGE pImage, uint32_t cBlockBitmapEntry) 936 936 { 937 uint32_t iBitmap = (cBlockBitmapEntry / 8) & ~3; /* Byte in the block bitmap. */937 uint32_t iBitmap = (cBlockBitmapEntry / 8); /* Byte in the block bitmap. */ 938 938 939 939 /*
Note:
See TracChangeset
for help on using the changeset viewer.

