[WINESYNC] msi/tests: Avoid using snprintf().

Signed-off-by: Alexandre Julliard <julliard@winehq.org>

wine commit id 72f7f57a21d6e4dd63de56d4a9a265048ed930b6 by Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
winesync 2022-03-13 01:24:01 +01:00 committed by Mark Jansen
parent bef1f25922
commit 3b835aa0ab
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B

View file

@ -5720,14 +5720,14 @@ static void test_installprops(void)
size = MAX_PATH;
r = MsiGetPropertyA(hpkg, "ScreenX", buf, &size);
ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS got %d\n", r);
ok(atol(buf) == res, "Expected %d, got %ld\n", res, atol(buf));
ok(atol(buf) == res, "Expected %d, got %s\n", res, buf);
res = GetSystemMetrics(SM_CYSCREEN);
buf[0] = 0;
size = MAX_PATH;
r = MsiGetPropertyA(hpkg, "ScreenY", buf, &size);
ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS got %d\n", r);
ok(atol(buf) == res, "Expected %d, got %ld\n", res, atol(buf));
ok(atol(buf) == res, "Expected %d, got %s\n", res, buf);
buf[0] = 0;
size = MAX_PATH;