[PATCH 13/14] dlls/msxml3: use correct integral type

Eric Pouech eric.pouech at gmail.com
Mon Jan 31 07:16:58 CST 2022


Signed-off-by: Eric Pouech <eric.pouech at gmail.com>

---
 dlls/msxml3/httprequest.c |    2 +-
 dlls/msxml3/mxwriter.c    |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/msxml3/httprequest.c b/dlls/msxml3/httprequest.c
index 934d580064f..86e569f5dd8 100644
--- a/dlls/msxml3/httprequest.c
+++ b/dlls/msxml3/httprequest.c
@@ -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;
diff --git a/dlls/msxml3/mxwriter.c b/dlls/msxml3/mxwriter.c
index e0dd0e3c6e0..084324797c7 100644
--- a/dlls/msxml3/mxwriter.c
+++ b/dlls/msxml3/mxwriter.c
@@ -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)




More information about the wine-devel mailing list