Commit 9a94f559 authored by Fabian Maurer's avatar Fabian Maurer Committed by Alexandre Julliard

comctl32/taskdialog: Use parentheses around & operator.

parent 8c0225ef
...@@ -118,7 +118,7 @@ static unsigned int taskdialog_get_reference_rect(const TASKDIALOGCONFIG *taskco ...@@ -118,7 +118,7 @@ static unsigned int taskdialog_get_reference_rect(const TASKDIALOGCONFIG *taskco
info.cbSize = sizeof(info); info.cbSize = sizeof(info);
GetMonitorInfoW(monitor, &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); GetWindowRect(taskconfig->hwndParent, ret);
else else
*ret = info.rcWork; *ret = info.rcWork;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment