Commit 9ffac609 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

Print command that fails to make error message a little more

comprehensible.
parent f46e5ce1
......@@ -375,7 +375,8 @@ static DWORD runCmd(LPWSTR cmdline, LPCWSTR dir, BOOL wait, BOOL minimized)
if( !CreateProcessW(NULL, cmdline, NULL, NULL, FALSE, 0, NULL, dir, &si, &info) )
{
WINE_ERR("Failed to run command (%ld)\n", GetLastError() );
WINE_ERR("Failed to run command %s (%ld)\n", wine_dbgstr_w(cmdline),
GetLastError() );
return INVALID_RUNCMD_RETURN;
}
......
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