Qian Hong : wscript: Don't fail silently for unsupported switches.
Module: wine Branch: master Commit: a1f83952907e0688bfa87c42fd276d18d6701a79 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a1f83952907e0688bfa87c42fd... Author: Qian Hong <qhong(a)codeweavers.com> Date: Sat Apr 19 01:04:09 2014 +0800 wscript: Don't fail silently for unsupported switches. --- programs/wscript/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/programs/wscript/main.c b/programs/wscript/main.c index b232949..c7d3801 100644 --- a/programs/wscript/main.c +++ b/programs/wscript/main.c @@ -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; }
participants (1)
-
Alexandre Julliard