fixes printing issue in client_test
This commit is contained in:
parent
35c113c0cb
commit
60add53428
|
@ -157,7 +157,7 @@ char const* esc(char const* code)
|
||||||
#ifdef ANSI_TERMINAL_COLORS
|
#ifdef ANSI_TERMINAL_COLORS
|
||||||
// this is a silly optimization
|
// this is a silly optimization
|
||||||
// to avoid copying of strings
|
// to avoid copying of strings
|
||||||
enum { num_strings = 20 };
|
enum { num_strings = 200 };
|
||||||
static char buf[num_strings][20];
|
static char buf[num_strings][20];
|
||||||
static int round_robin = 0;
|
static int round_robin = 0;
|
||||||
char* ret = buf[round_robin];
|
char* ret = buf[round_robin];
|
||||||
|
|
Loading…
Reference in New Issue