[Bug 39673] Logical error in comparison (misprint)

wine-bugs at winehq.org wine-bugs at winehq.org
Wed Nov 25 12:28:02 CST 2015


https://bugs.winehq.org/show_bug.cgi?id=39673

--- Comment #1 from Sergey Isakov <isakov-sl at bk.ru> ---
Same here

---
wine-hq/dlls/msi/tests/automation.c:881:9: warning: logical not is only
      applied to the left hand side of this comparison
[-Wlogical-not-parentheses]
    if (!hr == S_OK) return hr;
        ^   ~~
----
it must be
    if (!hr) return hr;

or
    if (hr == S_OK) return hr;

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list