From 60add5342829720a0e0fc3544e030f428da89dcd Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Thu, 28 Feb 2008 02:46:01 +0000 Subject: [PATCH] fixes printing issue in client_test --- 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 c3724f2a5..56ad71b02 100644 --- a/examples/client_test.cpp +++ b/examples/client_test.cpp @@ -157,7 +157,7 @@ char const* esc(char const* code) #ifdef ANSI_TERMINAL_COLORS // this is a silly optimization // to avoid copying of strings - enum { num_strings = 20 }; + enum { num_strings = 200 }; static char buf[num_strings][20]; static int round_robin = 0; char* ret = buf[round_robin];