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