kernel32: Don't check a discarded variable.

Signed-off-by: Jactry Zeng <jzeng@codeweavers.com>
Signed-off-by: Ken Thomases <ken@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jactry Zeng 2018-10-24 13:30:17 +08:00 committed by Alexandre Julliard
parent 82dbf75dc0
commit ebc0e5ffb5

View file

@ -2146,7 +2146,7 @@ static NTSTATUS exec_loader( const RTL_USER_PROCESS_PARAMETERS *params, int sock
wine_exec_wine_binary( loader, argv, getenv("WINELOADER") );
}
#ifdef __APPLE__
while (errno == ENOTSUP && exec_only && terminate_main_thread());
while (errno == ENOTSUP && terminate_main_thread());
#else
while (0);
#endif