From 81c799e590492954ea2b84aae7fa7a927aee537d Mon Sep 17 00:00:00 2001 From: Aiken Harris Date: Fri, 12 Jun 2026 12:59:16 +0200 Subject: [PATCH] Fix TrampolineCodeSize variable type --- xtoskrnl/hl/x86/cpu.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xtoskrnl/hl/x86/cpu.cc b/xtoskrnl/hl/x86/cpu.cc index f5f406d..d6014d3 100644 --- a/xtoskrnl/hl/x86/cpu.cc +++ b/xtoskrnl/hl/x86/cpu.cc @@ -85,9 +85,9 @@ XTAPI XTSTATUS HL::Cpu::StartAllProcessors(VOID) { - ULONG CpuNumber, Index, MaxCpus, SipiVector, Timeout, TrampolinePages; + ULONG CpuNumber, Index, MaxCpus, SipiVector, Timeout, TrampolineCodeSize, TrampolinePages; PVOID CpuStructures, TrampolineAddress, TrampolineCode; - ULONG_PTR AllocationSize, TrampolineCodeSize; + ULONG_PTR AllocationSize; PPROCESSOR_START_BLOCK StartBlock; PKPROCESSOR_BLOCK ProcessorBlock; PACPI_SYSTEM_INFO SysInfo;