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/+/7671
-- gerrit commit e961ba497fd455b3881a2427b23cfdad359d8c4b Author: Antonio Borneo <borneo.anto...@gmail.com> Date: Sat May 6 18:49:46 2023 +0200 hello: include hello.h Let source file to include its file .h to validate the exported prototypes. Detected through 'sparse' tool. Change-Id: I6197f21c857833dafc3d6e3b750c764bf4610abd Signed-off-by: Antonio Borneo <borneo.anto...@gmail.com> diff --git a/src/hello.c b/src/hello.c index 4a4ce01cab..4e27d4d68d 100644 --- a/src/hello.c +++ b/src/hello.c @@ -8,6 +8,7 @@ #include <config.h> #endif #include <helper/log.h> +#include "hello.h" COMMAND_HANDLER(handle_foo_command) { --