From f162f02b5da3324976ae634661f6ab8b7c6421f9 Mon Sep 17 00:00:00 2001 From: winesync Date: Mon, 14 Mar 2022 21:53:48 +0100 Subject: [PATCH] [WINESYNC] msi/tests: Fix the trailing linefeed in an ok() message. Signed-off-by: Francois Gouget Signed-off-by: Hans Leidekker Signed-off-by: Alexandre Julliard wine commit id 194d1b72587756512c693df7c2fce505d591c905 by Francois Gouget --- 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);