Commit ebc0e5ff authored by Jactry Zeng's avatar Jactry Zeng Committed by Alexandre Julliard

kernel32: Don't check a discarded variable.

parent 82dbf75d
......@@ -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
......
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