[PATCH 14/31] dlls/dplayx/tests: use correct integral type

Eric Pouech eric.pouech at gmail.com
Thu Feb 24 04:28:02 CST 2022


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

---
 dlls/dplayx/tests/dplayx.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dlls/dplayx/tests/dplayx.c b/dlls/dplayx/tests/dplayx.c
index d71df8838f7..11d96706e9f 100644
--- a/dlls/dplayx/tests/dplayx.c
+++ b/dlls/dplayx/tests/dplayx.c
@@ -6864,7 +6864,8 @@ done:
 /* taken from programs/winetest/main.c */
 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