Commit 6e407ccc authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 61d0d121
...@@ -2085,7 +2085,7 @@ static void test_rsa_round_trip(void) ...@@ -2085,7 +2085,7 @@ static void test_rsa_round_trip(void)
if (result) if (result)
{ {
ok(dataLen == sizeof(test_string), "unexpected size %d\n", dataLen); 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); CryptReleaseContext(prov, 0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment