Changeset 7281 in vbox for trunk/src/VBox
- Timestamp:
- Mar 4, 2008 4:24:09 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/VBoxHDD-new.cpp
r7277 r7281 1089 1089 ("uImageFlags=%#x\n", uImageFlags), 1090 1090 rc = VERR_INVALID_PARAMETER); 1091 /* The PCHS geometry fields may be 0 to leave it for later. */ 1091 1092 AssertMsgBreak( VALID_PTR(pPCHSGeometry) 1092 1093 && pPCHSGeometry->cCylinders <= 16383 1093 && pPCHSGeometry->cCylinders != 01094 1094 && pPCHSGeometry->cHeads <= 16 1095 && pPCHSGeometry->cHeads != 0 1096 && pPCHSGeometry->cSectors <= 63 1097 && pPCHSGeometry->cSectors != 0, 1095 && pPCHSGeometry->cSectors <= 63, 1098 1096 ("pPCHSGeometry=%#p PCHS=%u/%u/%u\n", pPCHSGeometry, 1099 1097 pPCHSGeometry->cCylinders, pPCHSGeometry->cHeads, … … 2030 2028 AssertMsgBreak( VALID_PTR(pPCHSGeometry) 2031 2029 && pPCHSGeometry->cCylinders <= 16383 2032 && pPCHSGeometry->cCylinders != 02033 2030 && pPCHSGeometry->cHeads <= 16 2034 && pPCHSGeometry->cHeads != 0 2035 && pPCHSGeometry->cSectors <= 63 2036 && pPCHSGeometry->cSectors != 0, 2031 && pPCHSGeometry->cSectors <= 63, 2037 2032 ("pPCHSGeometry=%#p PCHS=%u/%u/%u\n", pPCHSGeometry, 2038 2033 pPCHSGeometry->cCylinders, pPCHSGeometry->cHeads,
Note:
See TracChangeset
for help on using the changeset viewer.