https://git.reactos.org/?p=reactos.git;a=commitdiff;h=f162f02b5da3324976ae634661f6ab8b7c6421f9

commit f162f02b5da3324976ae634661f6ab8b7c6421f9
Author:     winesync <[email protected]>
AuthorDate: Mon Mar 14 21:53:48 2022 +0100
Commit:     Mark Jansen <[email protected]>
CommitDate: Sun Mar 20 19:28:45 2022 +0100

    [WINESYNC] msi/tests: Fix the trailing linefeed in an ok() message.
    
    Signed-off-by: Francois Gouget <[email protected]>
    Signed-off-by: Hans Leidekker <[email protected]>
    Signed-off-by: Alexandre Julliard <[email protected]>
    
    wine commit id 194d1b72587756512c693df7c2fce505d591c905 by Francois Gouget 
<[email protected]>
---
 modules/rostests/winetests/msi/msi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/rostests/winetests/msi/msi.c 
b/modules/rostests/winetests/msi/msi.c
index d9b3a6d6756..70b8f0e3e1d 100644
--- a/modules/rostests/winetests/msi/msi.c
+++ b/modules/rostests/winetests/msi/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);

Reply via email to