]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Fix spinner rotation
authorAlexander Moisseev <moiseev@mezonplus.ru>
Sat, 17 Mar 2018 15:58:08 +0000 (18:58 +0300)
committerAlexander Moisseev <moiseev@mezonplus.ru>
Sat, 17 Mar 2018 15:58:08 +0000 (18:58 +0300)
utils/rspamd_stats.pl

index efb7873588e1f9f516b56850f4dd00d0bf563980..50191959c7e5a156634b132d7c309ca54a00aece 100755 (executable)
@@ -702,8 +702,8 @@ sub spinner {
     my @spinner = qw{/ - \ |};
     return
       if ( $json || ( time - $spinner_update_time ) < 1 );
-    printf "%s\r", $spinner[ $spinner_update_time % @spinner ];
     $spinner_update_time = time;
+    printf "%s\r", $spinner[ $spinner_update_time % @spinner ];
     select()->flush();
 }