[PATCH] msi/tests: Fix the trailing linefeed in an ok() message.

Francois Gouget fgouget at free.fr
Mon Feb 14 05:41:11 CST 2022


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 dlls/msi/tests/msi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/msi/tests/msi.c b/dlls/msi/tests/msi.c
index 39cbaf56b79..fcdcd60a9f8 100644
--- a/dlls/msi/tests/msi.c
+++ b/dlls/msi/tests/msi.c
@@ -4553,7 +4553,7 @@ static void test_MsiGetProductInfo(void)
     ok(r == ERROR_UNKNOWN_PROPERTY,
        "Expected ERROR_UNKNOWN_PROPERTY, got %d\n", r);
     ok(!lstrcmpA(buf, "apple"), "Expected buf to be unchanged, got %s\n", buf);
-    ok(sz == MAX_PATH, "%lun", sz);
+    ok(sz == MAX_PATH, "%lu\n", sz);
 
     res = RegCreateKeyExA(localkey, "InstallProperties", 0, NULL, 0, access, NULL, &propkey, NULL);
     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %ld\n", res);
-- 
2.30.2



More information about the wine-devel mailing list