]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: tools: increase the number of ITOA strings to 16
authorWilly Tarreau <w@1wt.eu>
Fri, 14 Dec 2018 12:59:42 +0000 (13:59 +0100)
committerWilly Tarreau <w@1wt.eu>
Fri, 14 Dec 2018 12:59:42 +0000 (13:59 +0100)
It's currently 10 and is too little to extend some tooltips on the stats page.

include/common/standard.h

index a3e8275011cda49e5befdb193e81d5cecd4601d8..dc771477bdf9ac429835527ee24fdcef876d87ca 100644 (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