Francois Gouget : msi/tests: Fix the trailing linefeed in an ok() message.

Alexandre Julliard julliard at winehq.org
Mon Feb 14 15:41:30 CST 2022


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Mon Feb 14 12:41:11 2022 +0100

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

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Hans Leidekker <hans at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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);




More information about the wine-cvs mailing list