Module: wine Branch: master Commit: 6483bf162f9dbd5be2925eb2f83d07448b6221ea URL: https://source.winehq.org/git/wine.git/?a=commit;h=6483bf162f9dbd5be2925eb2f...
Author: Eric Pouech eric.pouech@gmail.com Date: Wed Feb 2 12:02:39 2022 +0100
scrobj: Use correct integral type.
Signed-off-by: Eric Pouech eric.pouech@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/scrobj/scrobj.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/scrobj/scrobj.c b/dlls/scrobj/scrobj.c index 228cfb14904..5537fbb7b88 100644 --- a/dlls/scrobj/scrobj.c +++ b/dlls/scrobj/scrobj.c @@ -1598,7 +1598,7 @@ static HRESULT parse_scriptlet_script(struct scriptlet_factory *factory, struct XmlNodeType node_type; size_t buf_size, size; WCHAR *new_body; - DWORD read; + UINT read; HRESULT hres;
TRACE("\n");