From 82a0f49451e60accb4debaa772c3f5654c8df3e3 Mon Sep 17 00:00:00 2001 From: Shawn Boyette Date: Thu, 18 Sep 2008 00:21:12 +0000 Subject: [PATCH] carriage return should be at front-of-line so count survives errors --- fingerprinter | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fingerprinter b/fingerprinter index cbcc9f9..6516e82 100755 --- a/fingerprinter +++ b/fingerprinter @@ -332,7 +332,7 @@ sub initialize { sub progress_ticker { return if $conf->{quiet}; - printf("> %d (%d/s)\r", $count, ($count / (time - $start + 1))) + printf("\r> %d (%d/s)", $count, ($count / (time - $start + 1))) if ($count % 100 == 0); } -- 1.7.2.5