From c54f702e65a94cd62484c7023492a587f13baa09 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sat, 14 Apr 2007 23:59:09 +0000 Subject: [PATCH] fixed fill character in client_test --- examples/client_test.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/client_test.cpp b/examples/client_test.cpp index 335f923ee..d27bde834 100644 --- a/examples/client_test.cpp +++ b/examples/client_test.cpp @@ -919,10 +919,10 @@ int main(int ac, char* av[]) if (s.state != torrent_status::seeding) { boost::posix_time::time_duration t = s.next_announce; - out << " next announce: " << esc("37") - << std::setw(2) << std::setfill('0') << t.hours() << ":" - << std::setw(2) << std::setfill('0') << t.minutes() << ":" - << std::setw(2) << std::setfill('0') << t.seconds() << esc("0") << " "; + out << " next announce: " << esc("37") << std::setfill('0') + << std::setw(2) << t.hours() << ":" + << std::setw(2) << t.minutes() << ":" + << std::setw(2) << t.seconds() << esc("0") << " " << std::setfill(' '); out << "tracker: " << s.current_tracker << "\n"; }