From f9c352b8246de3ea14823a06d1010bec8cfeb3e8 Mon Sep 17 00:00:00 2001 From: mrjbom <37502620+mrjbom@users.noreply.github.com> Date: Sat, 19 Oct 2024 23:47:44 +0300 Subject: [PATCH] Minor clarification --- src/structures/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/mod.rs b/src/structures/mod.rs index 3bfcf78ea..1bf7d19f2 100644 --- a/src/structures/mod.rs +++ b/src/structures/mod.rs @@ -15,7 +15,7 @@ pub mod tss; #[derive(Debug, Clone, Copy)] #[repr(C, packed(2))] pub struct DescriptorTablePointer { - /// Size of the DT. + /// Size of the DT in bytes - 1. pub limit: u16, /// Pointer to the memory region containing the DT. pub base: VirtAddr,