rsaenh/tests: Add a trailing '\n' to an ok() call.

This commit is contained in:
Francois Gouget 2009-11-14 15:55:59 +01:00 committed by Alexandre Julliard
parent 61d0d121d0
commit 6e407cccb8
1 changed files with 1 additions and 1 deletions

View File

@ -2085,7 +2085,7 @@ static void test_rsa_round_trip(void)
if (result)
{
ok(dataLen == sizeof(test_string), "unexpected size %d\n", dataLen);
ok(!memcmp(data, test_string, sizeof(test_string)), "unexpected value");
ok(!memcmp(data, test_string, sizeof(test_string)), "unexpected value\n");
}
CryptReleaseContext(prov, 0);