From 765eee799158f464e1ada87ac999bbf3ddab54a8 Mon Sep 17 00:00:00 2001 From: josesimoes Date: Mon, 16 Sep 2024 10:46:43 +0100 Subject: [PATCH] Increase buffer size to deal with max double and float --- src/CLR/Helpers/nanoprintf/nanoprintf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CLR/Helpers/nanoprintf/nanoprintf.h b/src/CLR/Helpers/nanoprintf/nanoprintf.h index bcb07076a3..1746093068 100644 --- a/src/CLR/Helpers/nanoprintf/nanoprintf.h +++ b/src/CLR/Helpers/nanoprintf/nanoprintf.h @@ -11,7 +11,7 @@ #define NANOPRINTF_USE_LARGE_FORMAT_SPECIFIERS 1 #define NANOPRINTF_USE_BINARY_FORMAT_SPECIFIERS 1 #define NANOPRINTF_USE_WRITEBACK_FORMAT_SPECIFIERS 1 -#define NANOPRINTF_CONVERSION_BUFFER_SIZE 48 +#define NANOPRINTF_CONVERSION_BUFFER_SIZE 364 #define NANOPRINTF_CONVERSION_FLOAT_TYPE uint64_t // [END_NF_CHANGE]