kernel32: Initialise dwProcessorType.

This commit is contained in:
André Hentschel 2011-06-15 20:51:45 +02:00 committed by Alexandre Julliard
parent dad3342907
commit 8a8a700513
1 changed files with 3 additions and 1 deletions

View File

@ -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;