We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b1773c commit ddf7a68Copy full SHA for ddf7a68
src/registers/model_specific.rs
@@ -402,8 +402,8 @@ mod x86_64 {
402
impl fmt::Display for InvalidStarSegmentSelectors {
403
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
404
match self {
405
- Self::SysretOffset => write!(f, "Sysret CS and SS is not offset by 8."),
406
- Self::SyscallOffset => write!(f, "Syscall CS and SS is not offset by 8."),
+ Self::SysretOffset => write!(f, "Sysret CS and SS are not offset by 8."),
+ Self::SyscallOffset => write!(f, "Syscall CS and SS are not offset by 8."),
407
Self::SysretPrivilegeLevel => {
408
write!(f, "Sysret's segment must be a Ring3 segment.")
409
}
0 commit comments