diff options
author | Pjotr Prins | 2017-10-11 12:35:33 +0000 |
---|---|---|
committer | Pjotr Prins | 2017-10-13 15:27:24 +0000 |
commit | 217158b7d141d6b4cd392435a6ac9ac6598e3859 (patch) | |
tree | e804f707b73ace3325ade86248f53b20eec2d4f1 /src/io.cpp | |
parent | 887b28f5a978c838b6de9ae2d77f0c7233642c5e (diff) | |
download | pangemma-217158b7d141d6b4cd392435a6ac9ac6598e3859.tar.gz |
Fixed mean and iterations in Plink - now this works
Diffstat (limited to 'src/io.cpp')
-rw-r--r-- | src/io.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -56,7 +56,7 @@ void ProgressBar(string str, double p, double total, double ratio) { cout << str << " "; cout << std::string(barsize,'='); cout << std::string(50-barsize,' '); - cout << setprecision(0) << fixed << progress << "%"; + cout << setprecision(0) << fixed << " " << progress << "%"; if (ratio != -1.0) cout << setprecision(2) << " " << ratio; cout << "\r" << flush; |