This is an automated email from Gerrit. "Antonio Borneo <borneo.anto...@gmail.com>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/8590
-- gerrit commit 8bcaae6b6f0b6ef9ac08b2ffe0468afc88f59efa Author: Antonio Borneo <borneo.anto...@gmail.com> Date: Sun Nov 17 17:05:29 2024 +0100 TO BE ABANDONED: patch to test -D_DEBUG_FREE_SPACE_ The previous patch in this series fixes a build issue when the macro _DEBUG_FREE_SPACE_ is defined. I have tested it building with Linux. To verify that there is no issue in all the builds from Jenkins, temporarily define the macro. This patch will not be merged and should be abandoned after the test. Change-Id: I794cf47ebb91496943ea31f0c55c6d65b18046df Signed-off-by: Antonio Borneo <borneo.anto...@gmail.com> diff --git a/src/helper/log.c b/src/helper/log.c index b3971c6710..9bbbe8eb98 100644 --- a/src/helper/log.c +++ b/src/helper/log.c @@ -24,6 +24,8 @@ #include <stdarg.h> +#define _DEBUG_FREE_SPACE_ + #ifdef _DEBUG_FREE_SPACE_ #ifdef HAVE_MALLOC_H #include <malloc.h> --