Jacek Caban : shell32: Use unsigned types for bit fields.
Module: wine Branch: master Commit: 50adef1949d477e017c05ca414d3bf81c3af6783 URL: https://gitlab.winehq.org/wine/wine/-/commit/50adef1949d477e017c05ca414d3bf8... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Wed Sep 13 12:16:55 2023 +0200 shell32: Use unsigned types for bit fields. --- dlls/shell32/shellpath.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/shell32/shellpath.c b/dlls/shell32/shellpath.c index b09b35795fb..015d7cdd4e2 100644 --- a/dlls/shell32/shellpath.c +++ b/dlls/shell32/shellpath.c @@ -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[] =
participants (1)
-
Alexandre Julliard