From b395078e1e39657b928e728bede41256b008abcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Thu, 26 May 2005 09:46:02 +0000 Subject: [PATCH] Sync to Wine-20050524: Michael Stefaniuc - Change the type of 1 bit wide bitfields to unsigned. svn path=/trunk/; revision=15500 --- reactos/tools/wrc/wrctypes.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/reactos/tools/wrc/wrctypes.h b/reactos/tools/wrc/wrctypes.h index e7eb9a4b283..d776d268879 100644 --- a/reactos/tools/wrc/wrctypes.h +++ b/reactos/tools/wrc/wrctypes.h @@ -535,13 +535,13 @@ typedef struct versioninfo { int filetype; int filesubtype; struct { - int fv:1; - int pv:1; - int fo:1; - int ff:1; - int ffm:1; - int ft:1; - int fst:1; + unsigned fv:1; + unsigned pv:1; + unsigned fo:1; + unsigned ff:1; + unsigned ffm:1; + unsigned ft:1; + unsigned fst:1; } gotit; ver_block_t *blocks; lvc_t lvc;