summaryrefslogtreecommitdiff
path: root/src/svf
diff options
context:
space:
mode:
authorUwe 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
commit33a17fd35995a7f679f92600055a8f55ae380022 (patch)
treeaeced6708919d4275600e4883e9566582e3c8d63 /src/svf
parent582b4195a99a21caa9522713fae659621137e0f9 (diff)
downloadopenocd+libswd-33a17fd35995a7f679f92600055a8f55ae380022.tar.gz
openocd+libswd-33a17fd35995a7f679f92600055a8f55ae380022.tar.bz2
openocd+libswd-33a17fd35995a7f679f92600055a8f55ae380022.tar.xz
openocd+libswd-33a17fd35995a7f679f92600055a8f55ae380022.zip
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/svf')
-rw-r--r--src/svf/svf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/svf/svf.c b/src/svf/svf.c
index 6acf0325..0cca768d 100644
--- a/src/svf/svf.c
+++ b/src/svf/svf.c
@@ -402,7 +402,7 @@ COMMAND_HANDLER(handle_svf_command)
svf_buffer_index = 0;
// double the buffer size
- // in case current command cannot be commited, and next command is a bit scan command
+ // in case current command cannot be committed, and next command is a bit scan command
// here is 32K bits for this big scan command, it should be enough
// buffer will be reallocated if buffer size is not enough
svf_tdi_buffer = (uint8_t *)malloc(2 * SVF_MAX_BUFFER_SIZE_TO_COMMIT);