Skip to content

Commit 7e49ece

Browse files
RestiosonFreax13
authored andcommitted
fmt
1 parent 9c30209 commit 7e49ece

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/structures/tss.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)