Module: wine Branch: master Commit: 8707eecfc236997c56334db66267a9161ad7af85 URL: https://source.winehq.org/git/wine.git/?a=commit;h=8707eecfc236997c56334db66...
Author: Eric Pouech eric.pouech@gmail.com Date: Thu Feb 24 11:28:02 2022 +0100
dplayx/tests: Use correct integral type.
Signed-off-by: Eric Pouech eric.pouech@gmail.com Signed-off-by: Alistair Leslie-Hughes leslie_alistair@hotmail.com Signed-off-by: Alexandre Julliard julliard@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;