Changeset 21008 in vbox for trunk/src/VBox/Devices/Storage
- Timestamp:
- Jun 28, 2009 8:41:46 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49222
- File:
-
- 1 edited
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.