MINOR: tools: increase the number of ITOA strings to 16

It's currently 10 and is too little to extend some tooltips on the stats page.
This commit is contained in:
Willy Tarreau 2018-12-14 13:59:42 +01:00
parent feead3aff7
commit 59caa3b872
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@
#define NB_LLMAX_STR (sizeof("-9223372036854775807")-1)
/* number of itoa_str entries */
#define NB_ITOA_STR 10
#define NB_ITOA_STR 16
/* maximum quoted string length (truncated above) */
#define QSTR_SIZE 200