mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[JSCRIPT] Fix a MSVC-x64 warning about to_uint32() (#1172)
"...\jsutils.c(679) : warning C4028: formal parameter 3 different from declaration"
Cherry-pick:
961d5c8ed0
CORE-7538
This commit is contained in:
parent
edc849490d
commit
c2083ed360
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue