Commit 50adef19 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

shell32: Use unsigned types for bit fields.

parent 555394b7
......@@ -3289,9 +3289,9 @@ static HRESULT set_folder_attributes(void)
static const struct
{
const CLSID *clsid;
BOOL wfparsing : 1;
BOOL wfdisplay : 1;
BOOL hideasdel : 1;
unsigned int wfparsing : 1;
unsigned int wfdisplay : 1;
unsigned int hideasdel : 1;
DWORD attr;
DWORD call_for_attr;
} folders[] =
......
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