Commit bfa6ddae authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

ole32: Fix a potentially confusing combination of conditional and bitwise or…

ole32: Fix a potentially confusing combination of conditional and bitwise or operators by adding extra brackets.
parent a10cf164
...@@ -3432,8 +3432,8 @@ HRESULT WINAPI CoWaitForMultipleHandles(DWORD dwFlags, DWORD dwTimeout, ...@@ -3432,8 +3432,8 @@ HRESULT WINAPI CoWaitForMultipleHandles(DWORD dwFlags, DWORD dwTimeout,
if (message_loop) if (message_loop)
{ {
DWORD wait_flags = (dwFlags & COWAIT_WAITALL) ? MWMO_WAITALL : 0 | DWORD wait_flags = ((dwFlags & COWAIT_WAITALL) ? MWMO_WAITALL : 0) |
(dwFlags & COWAIT_ALERTABLE ) ? MWMO_ALERTABLE : 0; ((dwFlags & COWAIT_ALERTABLE ) ? MWMO_ALERTABLE : 0);
TRACE("waiting for rpc completion or window message\n"); TRACE("waiting for rpc completion or window message\n");
......
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