From: OpenOCD-Gerrit <ope...@us...> - 2021-06-18 22:12:52
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via b19505a34377c2bade1aa129108b0c6aec577512 (commit) from 3e8ca67d1f9309d6f7860bdb6e9ad80d60f3ae6e (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit b19505a34377c2bade1aa129108b0c6aec577512 Author: Diego Herranz <die...@di...> Date: Fri Jun 11 08:58:04 2021 +0100 contrib/itmdump.c: fix implicit declaration warning atoi used but stdlib.h wasn't included. Also, include statements reordered alphabetically. Change-Id: I7fcdbf3fa940a172204ec811399e1a7fdebdc979 Signed-off-by: Diego Herranz <die...@di...> Reviewed-on: http://openocd.zylin.com/6312 Tested-by: jenkins Reviewed-by: Antonio Borneo <bor...@gm...> diff --git a/contrib/itmdump.c b/contrib/itmdump.c index 24aa34f32..88099040a 100644 --- a/contrib/itmdump.c +++ b/contrib/itmdump.c @@ -39,8 +39,9 @@ #include <errno.h> #include <libgen.h> -#include <stdio.h> #include <stdbool.h> +#include <stdio.h> +#include <stdlib.h> #include <string.h> #include <unistd.h> ----------------------------------------------------------------------- Summary of changes: contrib/itmdump.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) hooks/post-receive -- Main OpenOCD repository |