From a67d44c6018877b8b4d017649fc08ee33f6c0992 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sat, 5 Jun 2004 12:24:35 +0000 Subject: [PATCH] bugfix --- examples/client_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/client_test.cpp b/examples/client_test.cpp index 5166b359b..a74803afb 100755 --- a/examples/client_test.cpp +++ b/examples/client_test.cpp @@ -202,7 +202,7 @@ std::string add_suffix(float val) return to_string(val, i==0?7:6) + prefix[i]; val /= 1000.f; } - return to_string(val, 6) + prefix[i]; + return to_string(val, 6) + "PB"; } std::string progress_bar(float progress, int width)