mldonkey-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Mldonkey-commits] Changes to mldonkey/src/daemon/common/commonDownloads


From: mldonkey-commits
Subject: [Mldonkey-commits] Changes to mldonkey/src/daemon/common/commonDownloads.ml
Date: Sun, 16 Oct 2005 16:42:58 -0400

Index: mldonkey/src/daemon/common/commonDownloads.ml
diff -u mldonkey/src/daemon/common/commonDownloads.ml:1.11 
mldonkey/src/daemon/common/commonDownloads.ml:1.12
--- mldonkey/src/daemon/common/commonDownloads.ml:1.11  Wed Sep 14 21:04:11 2005
+++ mldonkey/src/daemon/common/commonDownloads.ml       Sun Oct 16 20:42:50 2005
@@ -18,6 +18,7 @@
 *)
 
 open Printf2
+open Int64ops
 open CommonInteractive
 open CommonClient
 open CommonComplexOptions
@@ -93,14 +94,14 @@
         Unix32.write (file_fd file) d.download_pos b.buf b.pos b.len;
 (*        end; *)
 (*      lprintf "DIFF %d/%d\n" nread b.len; *)
-        d.download_pos <- Int64.add d.download_pos (Int64.of_int b.len);
+        d.download_pos <- d.download_pos ++ (Int64.of_int b.len);
 (*
       lprintf "NEW SOURCE POS %s\n" (Int64.to_string c.client_pos);
   *)
         buf_used b b.len;
         if d.download_pos > file_downloaded file then 
           add_file_downloaded file
-          (Int64.sub d.download_pos (file_downloaded file));
+          (d.download_pos -- (file_downloaded file));
         if file_downloaded file = file_size file then
           file_complete d
     




reply via email to

[Prev in Thread] Current Thread [Next in Thread]