From 7043b7baa411901762459e4c214eb04120f63995 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Thu, 24 May 2007 01:32:18 +0200 Subject: [PATCH] msi: A signed 1-bit bitfield doesn't make much sense; use unsigned. --- dlls/msi/msipriv.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/msi/msipriv.h b/dlls/msi/msipriv.h index a8d833fa676..bcb75123e9c 100644 --- a/dlls/msi/msipriv.h +++ b/dlls/msi/msipriv.h @@ -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 -- 2.11.4.GIT