mshtml: Use unsigned types for bitfields.

This commit is contained in:
Jacek Caban 2023-09-13 12:14:44 +02:00 committed by Alexandre Julliard
parent 78c77ae3e0
commit 1913d265d7

View file

@ -958,8 +958,8 @@ struct HTMLDocumentNode {
nsIDOMDocument *dom_document;
nsIDOMHTMLDocument *html_document;
BOOL content_ready : 1;
BOOL unload_sent : 1;
unsigned int content_ready : 1;
unsigned int unload_sent : 1;
IHTMLDOMImplementation *dom_implementation;
IHTMLNamespaceCollection *namespaces;