Module: wine Branch: oldstable Commit: 427a7a2bcd546a38d7ac26bd31e7f6f0fbaef6ca URL: https://source.winehq.org/git/wine.git/?a=commit;h=427a7a2bcd546a38d7ac26bd3...
Author: Serge Gautherie winehq-git_serge_180711@gautherie.fr Date: Tue Dec 18 02:11:41 2018 +0100
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 (cherry picked from commit 961d5c8ed05eeccbe216ff24faa0e3d6a0c2b332) Signed-off-by: Michael Stefaniuc mstefani@winehq.org
---
dlls/jscript/jsutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/jscript/jsutils.c b/dlls/jscript/jsutils.c index 4556ec4..3f42da4 100644 --- a/dlls/jscript/jsutils.c +++ b/dlls/jscript/jsutils.c @@ -668,7 +668,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;