diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-20 13:53:50 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-11-20 21:47:24 +0100 |
commit | 288dc96fedfeb1a1da35720419120cac2979050d (patch) | |
tree | bb5fd536fc8f2e3fb659bd5dcbf75410cc79e865 | |
parent | ac9ec944f00384a61cfeee5ecca571f6b4158496 (diff) |
ddb/db_run.c: trivial stylistic fix for consistency
* ddb/db_run.c: Trivial stylistic fix for consistency.
-rw-r--r-- | ddb/db_run.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ddb/db_run.c b/ddb/db_run.c index e380253..a595af8 100644 --- a/ddb/db_run.c +++ b/ddb/db_run.c @@ -188,7 +188,7 @@ db_restart_at_pc(watchpt, task) db_store_count += inst_store(ins); #ifdef SOFTWARE_SSTEP /* Account for instructions in delay slots */ - brpc = next_instr_address(pc,1,task); + brpc = next_instr_address(pc, 1, task); if ((brpc != pc) && (inst_branch(ins) || inst_call(ins))) { /* Note: this ~assumes an instruction <= sizeof(int) */ db_get_task_value(brpc, sizeof(int), FALSE, task); |