jscript: Remove break after return (Smatch).

This commit is contained in:
Michael Stefaniuc 2012-01-02 22:23:48 +01:00 committed by Alexandre Julliard
parent 15162ddf3c
commit 158c8b76cb
1 changed files with 1 additions and 3 deletions

View File

@ -571,10 +571,8 @@ HRESULT to_string(script_ctx_t *ctx, VARIANT *v, jsexcept_t *ei, BSTR *str)
case VT_I4:
*str = int_to_bstr(V_I4(v));
break;
case VT_R8: {
case VT_R8:
return double_to_bstr(V_R8(v), str);
break;
}
case VT_BSTR:
*str = SysAllocString(V_BSTR(v));
break;