diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2011-03-17 03:22:12 +0100 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2011-03-17 07:25:25 +0100 |
commit | 33a17fd35995a7f679f92600055a8f55ae380022 (patch) | |
tree | aeced6708919d4275600e4883e9566582e3c8d63 /src/target/mips32.c | |
parent | 582b4195a99a21caa9522713fae659621137e0f9 (diff) | |
download | riscv-openocd-33a17fd35995a7f679f92600055a8f55ae380022.zip riscv-openocd-33a17fd35995a7f679f92600055a8f55ae380022.tar.gz riscv-openocd-33a17fd35995a7f679f92600055a8f55ae380022.tar.bz2 |
Fix a bunch of typos.
Fix a bunch of typos.
Most are in code comments, so nothing should break. UNKOWN_COMMAND and
CMD_UNKOWN are not used elsewhere, so correcting the spelling should
also not break anything.
Diffstat (limited to 'src/target/mips32.c')
-rw-r--r-- | src/target/mips32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/mips32.c b/src/target/mips32.c index e48a040..79215b5 100644 --- a/src/target/mips32.c +++ b/src/target/mips32.c @@ -351,7 +351,7 @@ static int mips32_run_and_wait(struct target *target, uint32_t entry_point, pc = buf_get_u32(mips32->core_cache->reg_list[MIPS32_PC].value, 0, 32); if (exit_point && (pc != exit_point)) { - LOG_DEBUG("failed algoritm halted at 0x%" PRIx32 " ", pc); + LOG_DEBUG("failed algorithm halted at 0x%" PRIx32 " ", pc); return ERROR_TARGET_TIMEOUT; } |