https://bugs.winehq.org/show_bug.cgi?id=39673
--- Comment #1 from Sergey Isakov isakov-sl@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;