File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -66,9 +66,9 @@ struct partitionTable {
66
66
* Sector part of Cylinder-head-sector address of the first block in
67
67
* the partition. Legal values are 1-63. Only used in old PC BIOS.
68
68
*/
69
- unsigned beginSector : 6 ;
69
+ uint8_t beginSector : 6 ;
70
70
/** High bits cylinder for first block in partition. */
71
- unsigned beginCylinderHigh : 2 ;
71
+ uint8_t beginCylinderHigh : 2 ;
72
72
/**
73
73
* Combine beginCylinderLow with beginCylinderHigh. Legal values
74
74
* are 0-1023. Only used in old PC BIOS.
@@ -88,9 +88,9 @@ struct partitionTable {
88
88
* Sector part of cylinder-head-sector address of the last sector in
89
89
* the partition. Legal values are 1-63. Only used in old PC BIOS.
90
90
*/
91
- unsigned endSector : 6 ;
91
+ uint8_t endSector : 6 ;
92
92
/** High bits of end cylinder */
93
- unsigned endCylinderHigh : 2 ;
93
+ uint8_t endCylinderHigh : 2 ;
94
94
/**
95
95
* Combine endCylinderLow with endCylinderHigh. Legal values
96
96
* are 0-1023. Only used in old PC BIOS.
You can’t perform that action at this time.
0 commit comments