jscript: Fix a MSVC-x64 warning about to_uint32().

Signed-off-by: Serge Gautherie <winehq-git_serge_180711@gautherie.fr>
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Serge Gautherie 2018-12-18 02:11:41 +01:00 committed by Alexandre Julliard
parent f19fdad2ba
commit 961d5c8ed0
1 changed files with 1 additions and 1 deletions

View File

@ -675,7 +675,7 @@ HRESULT to_int32(script_ctx_t *ctx, jsval_t v, INT *ret)
}
/* ECMA-262 3rd Edition 9.6 */
HRESULT to_uint32(script_ctx_t *ctx, jsval_t val, DWORD *ret)
HRESULT to_uint32(script_ctx_t *ctx, jsval_t val, UINT32 *ret)
{
INT32 n;
HRESULT hres;