Commit 8a8a7005 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

kernel32: Initialise dwProcessorType.

parent dad33429
......@@ -157,7 +157,9 @@ VOID WINAPI GetSystemInfo(
case PROCESSOR_ARCHITECTURE_AMD64:
si->dwProcessorType = PROCESSOR_AMD_X8664;
break;
default: FIXME("Unknown processor architecture %x\n", sci.Architecture);
default:
FIXME("Unknown processor architecture %x\n", sci.Architecture);
si->dwProcessorType = 0;
}
si->dwAllocationGranularity = sbi.AllocationGranularity;
si->wProcessorLevel = sci.Level;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment