Commit 7043b7ba authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

msi: A signed 1-bit bitfield doesn't make much sense; use unsigned.

parent 192c4615
......@@ -300,9 +300,9 @@ typedef struct tagMSICOMPONENT
LPWSTR FullKeypath;
LPWSTR AdvertiseString;
int hasAdvertiseFeature:1;
int hasLocalFeature:1;
int hasSourceFeature:1;
unsigned int hasAdvertiseFeature:1;
unsigned int hasLocalFeature:1;
unsigned int hasSourceFeature:1;
} MSICOMPONENT;
typedef struct tagComponentList
......
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