Commit a3c1d455 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

msvcrt/tests: Remove useless assignment (LLVM/Clang).

parent a85adf31
......@@ -1176,7 +1176,7 @@ static void test__strtod(void)
ok(almost_equal(d, 0.1e-4736L), "d = %lf\n", d);
errno = 0xdeadbeef;
d = strtod(overflow, &end);
strtod(overflow, &end);
ok(errno == ERANGE, "errno = %x\n", errno);
ok(end == overflow+21, "incorrect end (%d)\n", (int)(end-overflow));
......
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