Commit b7f74922 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

jscript: Make int_to_bstr() static.

parent 98748efb
......@@ -266,7 +266,6 @@ HRESULT variant_change_type(script_ctx_t*,VARIANT*,VARIANT*,VARTYPE) DECLSPEC_HI
HRESULT decode_source(WCHAR*) DECLSPEC_HIDDEN;
BSTR int_to_bstr(int) DECLSPEC_HIDDEN;
HRESULT double_to_bstr(double,BSTR*) DECLSPEC_HIDDEN;
typedef struct named_item_t {
......
......@@ -517,7 +517,7 @@ HRESULT to_uint32(script_ctx_t *ctx, VARIANT *v, jsexcept_t *ei, DWORD *ret)
return S_OK;
}
BSTR int_to_bstr(int i)
static BSTR int_to_bstr(int i)
{
WCHAR buf[12], *p;
BOOL neg = FALSE;
......
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