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:
parent
88e66e9974
commit
a1add35412
|
@ -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;
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue