From: OpenOCD-Gerrit <ope...@us...> - 2022-09-27 08:50:06
|
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 ae937791d35b0820e0bc9bf0ab134c2bebd113e4 (commit) from 3fdd3249b56419ccf45f0859461fe4858cfb8da3 (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 ae937791d35b0820e0bc9bf0ab134c2bebd113e4 Author: Tomas Vanek <va...@fb...> Date: Wed Sep 21 07:49:00 2022 +0200 flash/nor/rp2040: remove new line from error message Change-Id: Idf3bce842b4507c1f12692b5fbcd6730637de9db Signed-off-by: Tomas Vanek <va...@fb...> Reviewed-on: https://review.openocd.org/c/openocd/+/7216 Reviewed-by: Antonio Borneo <bor...@gm...> Reviewed-by: Jonathan Bell <jon...@ra...> Tested-by: jenkins diff --git a/src/flash/nor/rp2040.c b/src/flash/nor/rp2040.c index 675f431b1..be86bb81e 100644 --- a/src/flash/nor/rp2040.c +++ b/src/flash/nor/rp2040.c @@ -132,7 +132,7 @@ static int rp2040_call_rom_func(struct target *target, struct rp2040_flash_bank for (unsigned int i = 0; i < n_args + 2; ++i) destroy_reg_param(&args[i]); if (err != ERROR_OK) - LOG_ERROR("Failed to invoke ROM function @0x%" PRIx16 "\n", func_offset); + LOG_ERROR("Failed to invoke ROM function @0x%" PRIx16, func_offset); return err; } ----------------------------------------------------------------------- Summary of changes: src/flash/nor/rp2040.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- Main OpenOCD repository |