winver: Fix program exit code.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2019-11-07 12:34:14 +01:00
parent 766ee1692e
commit 4e81171e12
1 changed files with 1 additions and 1 deletions

View File

@ -24,5 +24,5 @@
int PASCAL WinMain (HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show)
{
return ShellAboutA(NULL, PACKAGE_NAME, PACKAGE_STRING, 0);
return !ShellAboutA(NULL, PACKAGE_NAME, PACKAGE_STRING, 0);
}