From d7ed474a4609eb98f5220dec391adee9c8d931ad Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Wed, 9 May 2007 20:06:53 +0000 Subject: [PATCH] interface update to client_test --- examples/client_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/client_test.cpp b/examples/client_test.cpp index 6b0fbe588..8eb92cdd2 100644 --- a/examples/client_test.cpp +++ b/examples/client_test.cpp @@ -987,11 +987,11 @@ int main(int ac, char* av[]) out << esc("33;7") << str << esc("0"); else if (i->finished_blocks[j]) out << esc("32;7") << str << esc("0"); else if (i->requested_blocks[j]) out << str; - else out << "-"; + else out << " "; #else if (i->finished_blocks[j]) out << "#"; else if (i->requested_blocks[j]) out << str; - else out << "-"; + else out << " "; #endif } char* piece_state[4] = {"", "slow", "medium", "fast"};