From: Willy Tarreau Date: Fri, 14 Dec 2018 12:59:42 +0000 (+0100) Subject: MINOR: tools: increase the number of ITOA strings to 16 X-Git-Tag: v1.9-dev11~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59caa3b872e0344958f3ec3df0e517fb6c3f5478;p=thirdparty%2Fhaproxy.git 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. --- diff --git a/include/common/standard.h b/include/common/standard.h index a3e8275011..dc771477bd 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