Eric Pouech : dplayx/tests: Use correct integral type.

Alexandre Julliard julliard at winehq.org
Fri Feb 25 14:17:22 CST 2022


Module: wine
Branch: master
Commit: 8707eecfc236997c56334db66267a9161ad7af85
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=8707eecfc236997c56334db66267a9161ad7af85

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Thu Feb 24 11:28:02 2022 +0100

dplayx/tests: Use correct integral type.

Signed-off-by: Eric Pouech <eric.pouech at gmail.com>
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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-cvs mailing list