aboutsummaryrefslogtreecommitdiff
path: root/src/target/riscv/program.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/target/riscv/program.c')
-rw-r--r--src/target/riscv/program.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/target/riscv/program.c b/src/target/riscv/program.c
index 8645ed6..b370401 100644
--- a/src/target/riscv/program.c
+++ b/src/target/riscv/program.c
@@ -56,7 +56,8 @@ int riscv_program_exec(struct riscv_program *p, struct target *t)
if (riscv_program_ebreak(p) != ERROR_OK) {
LOG_ERROR("Unable to write ebreak");
for (size_t i = 0; i < riscv_debug_buffer_size(p->target); ++i)
- LOG_ERROR("ram[%02x]: DASM(0x%08lx) [0x%08lx]", (int)i, (long)p->debug_buffer[i], (long)p->debug_buffer[i]);
+ LOG_ERROR("ram[%02x]: DASM(0x%08lx) [0x%08lx]", (int)i,
+ (long)p->debug_buffer[i], (long)p->debug_buffer[i]);
return ERROR_FAIL;
}