Commit c0598baa authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcp140/tests: Fix _Syserror_map(0) test failure in newest msvcp140.

parent 1d917529
......@@ -1396,6 +1396,8 @@ static void test__Syserror_map(void)
r1 = p__Syserror_map(0);
ok(r1 != NULL, "_Syserror_map(0) returned NULL\n");
r1 = p__Syserror_map(1233);
ok(r1 != NULL, "_Syserror_map(1233) returned NULL\n");
r2 = p__Syserror_map(1234);
ok(r2 != NULL, "_Syserror_map(1234) returned NULL\n");
ok(r1 == r2, "r1 = %p(%s), r2 = %p(%s)\n", r1, r1, r2, r2);
......
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