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 @@ -59,24 +59,24 @@ pub enum InvalidIoMap {
5959 /// start of the TSS.
6060 TooFarFromTss {
6161 /// The distance of the IO permissions bitmap from the beginning of the TSS.
62- distance : usize
62+ distance : usize ,
6363 } ,
6464 /// The final byte of the IO permissions bitmap was not 0xff
6565 InvalidTerminatingByte {
6666 /// The byte found at the end of the IO permissions bitmap.
67- byte : u8
67+ byte : u8 ,
6868 } ,
6969 /// The IO permissions bitmap exceeds the maximum length (8193).
7070 TooLong {
7171 /// The length of the IO permissions bitmap.
72- len : usize
72+ len : usize ,
7373 } ,
7474 /// The `iomap_base` in the `TaskStateSegment` struct was not what was expected.
7575 InvalidBase {
7676 /// The expected `iomap_base` to be set in the `TaskStateSegment` struct.
7777 expected : u16 ,
7878 /// The actual `iomap_base` set in the `TaskStateSegment` struct.
79- got : u16
79+ got : u16 ,
8080 } ,
8181}
8282
You can’t perform that action at this time.
0 commit comments