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/+/7596
-- gerrit commit cfb7b3bcf93afcfec741782ca1de5c910e8234f9 Author: Antonio Borneo <borneo.anto...@gmail.com> Date: Sun Apr 9 00:14:45 2023 +0200 helper: util: include util.h Let source file to include its file .h to validate the exported prototypes. Detected through 'sparse' tool. Change-Id: I5de107b4f8a468f0e37f06171f5f0c3c0546db1a Signed-off-by: Antonio Borneo <borneo.anto...@gmail.com> diff --git a/src/helper/util.c b/src/helper/util.c index 5e12021ff5..2e9f6155ee 100644 --- a/src/helper/util.c +++ b/src/helper/util.c @@ -12,6 +12,7 @@ #include "log.h" #include "time_support.h" +#include "util.h" COMMAND_HANDLER(handler_util_ms) { --