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

Alexandre Julliard julliard at winehq.org
Thu Feb 10 11:42:08 CST 2011


Module: wine
Branch: master
Commit: a3c1d4550c24d25065b7797806a91db2191fd6ae
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a3c1d4550c24d25065b7797806a91db2191fd6ae

Author: Austin English <austinenglish at gmail.com>
Date:   Wed Feb  9 13:43:34 2011 -0800

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

---

 dlls/msvcrt/tests/string.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/msvcrt/tests/string.c b/dlls/msvcrt/tests/string.c
index b003f5a..c532fce 100644
--- a/dlls/msvcrt/tests/string.c
+++ b/dlls/msvcrt/tests/string.c
@@ -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));
 




More information about the wine-cvs mailing list