[PATCH 10/20] dlls/ntprint/tests: use correct integral type

Eric Pouech eric.pouech at gmail.com
Wed Mar 2 02:03:57 CST 2022


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

---
 dlls/ntprint/tests/ntprint.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/ntprint/tests/ntprint.c b/dlls/ntprint/tests/ntprint.c
index 57caa49ab27..7e27c1ce58b 100644
--- a/dlls/ntprint/tests/ntprint.c
+++ b/dlls/ntprint/tests/ntprint.c
@@ -67,7 +67,7 @@ static void test_PSetupCreateMonitorInfo(VOID)
 {
     HANDLE  mi;
     WCHAR buffer[1024] = {'\\','\\'};
-    UINT len = ARRAY_SIZE(buffer) - 2;
+    DWORD len = ARRAY_SIZE(buffer) - 2;
     GetComputerNameW(buffer + 2, &len);
 
     SetLastError(0xdeadbeef);




More information about the wine-devel mailing list