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

This commit is contained in:
Austin English 2011-02-09 13:43:34 -08:00 committed by Alexandre Julliard
parent a85adf3152
commit a3c1d4550c
1 changed files with 1 additions and 1 deletions

View File

@ -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));