fine, no more dividing by zero
authorShawn Boyette <sboyette@esilibrary.com>
Mon, 18 Aug 2008 20:31:37 +0000 (20:31 +0000)
committerShawn Boyette <sboyette@esilibrary.com>
Mon, 18 Aug 2008 20:31:37 +0000 (20:31 +0000)
fingerprinter

index 9b973b8..addeaaf 100755 (executable)
@@ -318,7 +318,7 @@ sub initialize {
 
 sub progress_ticker {
     return if $conf->{quiet};
-    printf("> %d (%d/s)\r", $count, ($count / (time - $start)))
+    printf("> %d (%d/s)\r", $count, ($count / (time - $start + 1)))
       if ($count % 100 == 0);
 }