Module: wine Branch: master Commit: 2319a27757650086c219592cccaa2b3f5620047e URL: https://gitlab.winehq.org/wine/wine/-/commit/2319a27757650086c219592cccaa2b3... Author: Gabriel Ivăncescu <gabrielopcode(a)gmail.com> Date: Mon Feb 27 16:02:12 2023 +0200 mshtml: Use proper types for readystate_locked and readystate_pending. Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com> --- 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 bec982a75fc..1873799dbf9 100644 --- a/dlls/mshtml/mshtml_private.h +++ b/dlls/mshtml/mshtml_private.h @@ -568,8 +568,8 @@ struct HTMLOuterWindow { struct list browser_entry; READYSTATE readystate; - BOOL readystate_locked; - unsigned readystate_pending; + unsigned readystate_locked; + BOOL readystate_pending; HTMLInnerWindow *pending_window; HTMLLocation location;