From 59caa3b872e0344958f3ec3df0e517fb6c3f5478 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Fri, 14 Dec 2018 13:59:42 +0100 Subject: [PATCH] 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. --- include/common/standard.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/common/standard.h b/include/common/standard.h index a3e827501..dc771477b 100644 --- a/include/common/standard.h +++ b/include/common/standard.h @@ -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