[PATCH] comctl32/taskdialog: Use parentheses around & operator

Fabian Maurer dark.shadow4 at web.de
Sat Sep 15 09:32:44 CDT 2018


Signed-off-by: Fabian Maurer <dark.shadow4 at web.de>
---
 dlls/comctl32/taskdialog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/comctl32/taskdialog.c b/dlls/comctl32/taskdialog.c
index f69fa6aaa3..1d91e1d55d 100644
--- a/dlls/comctl32/taskdialog.c
+++ b/dlls/comctl32/taskdialog.c
@@ -118,7 +118,7 @@ static unsigned int taskdialog_get_reference_rect(const TASKDIALOGCONFIG *taskco
     info.cbSize = sizeof(info);
     GetMonitorInfoW(monitor, &info);
 
-    if (taskconfig->dwFlags & TDF_POSITION_RELATIVE_TO_WINDOW && taskconfig->hwndParent)
+    if ((taskconfig->dwFlags & TDF_POSITION_RELATIVE_TO_WINDOW) && taskconfig->hwndParent)
         GetWindowRect(taskconfig->hwndParent, ret);
     else
         *ret = info.rcWork;
-- 
2.19.0




More information about the wine-devel mailing list