wscript: Don't fail silently for unsupported switches.

This commit is contained in:
Qian Hong 2014-04-19 01:04:09 +08:00 committed by Alexandre Julliard
parent c73bd869ec
commit a1f8395290
1 changed files with 3 additions and 0 deletions

View File

@ -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;
}