Module: wine Branch: master Commit: 1913d265d755400851e9f8a366901571265a065f URL: https://gitlab.winehq.org/wine/wine/-/commit/1913d265d755400851e9f8a36690157...
Author: Jacek Caban jacek@codeweavers.com Date: Wed Sep 13 12:14:44 2023 +0200
mshtml: Use unsigned types for bitfields.
---
dlls/mshtml/mshtml_private.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/mshtml/mshtml_private.h b/dlls/mshtml/mshtml_private.h index 59fbffa078c..5b9b1fac1b5 100644 --- a/dlls/mshtml/mshtml_private.h +++ b/dlls/mshtml/mshtml_private.h @@ -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;