diff options
author | Jan Huwald <jh@sotun.de> | 2013-02-28 11:27:09 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2013-02-28 11:27:09 (GMT) |
commit | 54ce2e60ccf93fb9f5d63e89b59d6adc223180ed (patch) | |
tree | 7cc44126f7da81e49e08e09e6624d74c33b25b10 | |
parent | 5f69a514e6fc5375ec477be1bced12a81fba3934 (diff) |
.
-rw-r--r-- | cacount.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cacount.cpp b/cacount.cpp index 1ef159b..07863ca 100644 --- a/cacount.cpp +++ b/cacount.cpp @@ -47,10 +47,10 @@ void iterState(function<void(int)> f, int numThreads=1) { } void iterTrans(int times, function<void(int)> f, char *msg = nullptr) { - if (msg) cerr << msg << times << " left\r"; + if (msg) cerr << msg << times << " left \r"; while (times--) { iterState(f); - if (msg) cerr << msg << times << " left\r"; + if (msg) cerr << msg << times << " left \r"; } if (msg) cerr << " \r"; } |