Skip to content

Commit fa5d40e

Browse files
committed
fmt
1 parent 7691201 commit fa5d40e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/structures/tss.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,23 +46,23 @@ pub enum InvalidIoMap {
4646
/// start of the TSS.
4747
TooFarFromTss {
4848
/// The distance of the IO permissions bitmap from the beginning of the TSS.
49-
distance: usize
49+
distance: usize,
5050
},
5151
/// The final byte of the IO permissions bitmap was not 0xff
5252
InvalidTerminatingByte {
5353
/// The byte found at the end of the IO permissions bitmap.
54-
byte: u8
54+
byte: u8,
5555
},
5656
/// The IO permissions bitmap exceeds the maximum length (8193).
5757
TooLong {
5858
/// The length of the IO permissions bitmap.
59-
len: usize
59+
len: usize,
6060
},
6161
/// The `iomap_base` in the `TaskStateSegment` struct was not what was expected.
6262
InvalidBase {
6363
/// The expected `iomap_base` to be set in the `TaskStateSegment` struct.
6464
expected: u16,
6565
/// The actual `iomap_base` set in the `TaskStateSegment` struct.
66-
got: u16
66+
got: u16,
6767
},
6868
}

0 commit comments

Comments
 (0)