From: Robert K. <may...@us...> - 2001-07-24 00:58:07
|
Update of /cvsroot/bitcollider/bitcollider/lib In directory usw-pr-cvs1:/tmp/cvs-serv9270/lib Modified Files: main.c Log Message: Fixed the incorrect progress indicator bug, added better support for bitcolliding many files via the shell extension and updated the build number. Index: main.c =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/lib/main.c,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -r1.26 -r1.27 *** main.c 2001/07/23 23:13:33 1.26 --- main.c 2001/07/24 00:58:04 1.27 *************** *** 17,20 **** --- 17,21 ---- #include "id3.h" #include "plugin_man.h" + #include "tiger.h" #ifndef _WIN32 #include "browser.h" *************** *** 630,634 **** int percentComplete; ! percentComplete = ((ftell(source) * 100) / submission->fileSize); if (percentComplete != submission->percentComplete) { --- 631,636 ---- int percentComplete; ! percentComplete = (int)(((word64)ftell(source) * (word64)100) / ! (word64)submission->fileSize); if (percentComplete != submission->percentComplete) { |