André Hentschel : winetest: Fix a cast.

Alexandre Julliard julliard at winehq.org
Mon Dec 21 09:39:51 CST 2009


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

Author: André Hentschel <nerv at dawncrow.de>
Date:   Sat Dec 19 18:00:46 2009 +0100

winetest: Fix a cast.

---

 programs/winetest/send.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/programs/winetest/send.c b/programs/winetest/send.c
index 2b4073a..c250424 100644
--- a/programs/winetest/send.c
+++ b/programs/winetest/send.c
@@ -301,7 +301,7 @@ send_file_wininet (const char *name)
         report (R_WARNING,
                 "File too big (%.1f MB > 1.5 MB); submitting partial report.",
                 filesize/1024.0/1024);
-        filesize = (DWORD) 1.5*1024*1024;
+        filesize = 1.5*1024*1024;
     }
 
     report (R_STATUS, "Opening HTTP connection to " SERVER_NAME);




More information about the wine-cvs mailing list