Module: wine Branch: master Commit: 85c5d3e28b1827bb120a0743840a231f74385e3c URL: http://source.winehq.org/git/wine.git/?a=commit;h=85c5d3e28b1827bb120a074384...
Author: Francois Gouget fgouget@free.fr Date: Sun Aug 30 20:19:58 2009 +0200
jscript: Add a trailing '\n' to a FIXME().
---
dlls/jscript/function.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/jscript/function.c b/dlls/jscript/function.c index aaa54ea..1651aeb 100644 --- a/dlls/jscript/function.c +++ b/dlls/jscript/function.c @@ -421,7 +421,7 @@ static HRESULT Function_apply(DispatchEx *dispex, LCID lcid, WORD flags, DISPPAR hres = array_to_args(arg_array, lcid, ei, caller, &args); jsdisp_release(arg_array); }else { - FIXME("throw TypeError"); + FIXME("throw TypeError\n"); hres = E_FAIL; } }