From: Shawn Boyette Date: Thu, 18 Sep 2008 00:21:12 +0000 (+0000) Subject: carriage return should be at front-of-line so count survives errors X-Git-Url: http://git.equinoxoli.org/?p=migration-tools.git;a=commitdiff_plain;h=82a0f49451e60accb4debaa772c3f5654c8df3e3;hp=995bd05a1dfc741b149b8661694db5e98a95b34b carriage return should be at front-of-line so count survives errors --- 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); }