[PATCH] programs/winetest: use correct integral type

Eric Pouech eric.pouech at gmail.com
Thu Jan 27 03:17:26 CST 2022


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

---
 programs/winetest/main.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/programs/winetest/main.c b/programs/winetest/main.c
index 0c431a903d7..3ed514f73e2 100644
--- a/programs/winetest/main.c
+++ b/programs/winetest/main.c
@@ -318,7 +318,8 @@ static BOOL is_native_dll( HMODULE module )
  */
 static BOOL is_stub_dll(const char *filename)
 {
-    DWORD size, ver;
+    UINT size;
+    DWORD ver;
     BOOL isstub = FALSE;
     char *p, *data;
 




More information about the wine-devel mailing list