Commit a1f83952 authored by Qian Hong's avatar Qian Hong Committed by Alexandre Julliard

wscript: Don't fail silently for unsupported switches.

parent c73bd869
......@@ -358,7 +358,10 @@ static BOOL set_host_properties(const WCHAR *prop)
else if(strcmpiW(prop, nologoW) == 0)
WINE_FIXME("ignored %s switch\n", debugstr_w(nologoW));
else
{
WINE_FIXME("unsupported switch %s\n", debugstr_w(prop));
return FALSE;
}
return TRUE;
}
......
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