Commit 9d90ef01 authored by Jeremy White's avatar Jeremy White Committed by Alexandre Julliard

msi: gcc 2.95 compatibility fix.

parent 2c79ae47
......@@ -19,6 +19,7 @@
*/
#define NONAMELESSUNION
#define NONAMELESSSTRUCT
#include <stdarg.h>
#include <stdio.h>
......@@ -356,7 +357,7 @@ static VOID set_installer_properties(MSIPACKAGE *package)
MSI_SetPropertyW( package, szVersionMsi, bufstr );
GetSystemInfo( &sys_info );
if (sys_info.u.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_INTEL)
if (sys_info.u.s.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_INTEL)
{
sprintfW( bufstr, szScreenFormat, sys_info.wProcessorLevel );
MSI_SetPropertyW( package, szIntel, bufstr );
......
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