File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 3838KeStartAllProcessors (VOID )
3939{
4040 PVOID KernelStack , DPCStack ;
41- SIZE_T ProcessorCount = 0 ;
41+ ULONG ProcessorCount = 0 ;
4242 PAPINFO APInfo ;
4343
4444 while (TRUE)
@@ -127,7 +127,7 @@ KeStartAllProcessors(VOID)
127127 KeLoaderBlock -> Thread = (ULONG_PTR )& APInfo -> Pcr .Prcb -> IdleThread ;
128128
129129 // Start the CPU
130- DPRINT ("Attempting to Start a CPU with number: %u \n" , ProcessorCount );
130+ DPRINT ("Attempting to Start a CPU with number: %lu \n" , ProcessorCount );
131131 if (!HalStartNextProcessor (KeLoaderBlock , ProcessorState ))
132132 {
133133 break ;
@@ -152,5 +152,5 @@ KeStartAllProcessors(VOID)
152152 if (DPCStack )
153153 MmDeleteKernelStack (DPCStack , FALSE);
154154
155- DPRINT1 ("KeStartAllProcessors: Successful AP startup count is %u \n" , ProcessorCount );
155+ DPRINT1 ("KeStartAllProcessors: Successful AP startup count is %lu \n" , ProcessorCount );
156156}
You can’t perform that action at this time.
0 commit comments