msxml3: Use correct integral type.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-01-31 14:16:58 +01:00 committed by Alexandre Julliard
parent 88e66e9974
commit a1add35412
2 changed files with 2 additions and 2 deletions

View file

@ -687,7 +687,7 @@ static HRESULT BindStatusCallback_create(httprequest* This, BindStatusCallback *
BindStatusCallback *bsc;
IBindCtx *pbc;
HRESULT hr;
int size;
LONG size;
hr = CreateBindCtx(0, &pbc);
if (hr != S_OK) return hr;

View file

@ -336,7 +336,7 @@ static HRESULT write_output_buffer(mxwriter *writer, const WCHAR *data, int len)
{
output_buffer *buffer = &writer->buffer;
encoded_buffer *buff;
unsigned int written;
ULONG written;
int src_len;
if (!len || !*data)