diff options
author | Spencer Oliver <spen@spen-soft.co.uk> | 2014-03-28 11:11:57 +0000 |
---|---|---|
committer | Paul Fertser <fercerpav@gmail.com> | 2014-03-29 08:04:47 +0000 |
commit | 0cb9778368ddda6dc193752034de6f8aafeb2454 (patch) | |
tree | 3ecfc1ce61c6be1d37c392b5c7ed0822717d6594 | |
parent | e22bad797f6c09c9ade8b8df63ff507fb9ba900d (diff) |
target: fix handle_profile_command variable typo
Change-Id: I5d476aecb4622731890e168b1be3173718151e95
Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk>
Reviewed-on: http://openocd.zylin.com/2066
Tested-by: jenkins
Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
-rw-r--r-- | src/target/target.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/target/target.c b/src/target/target.c index b868383d..f5a8666b 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -3618,7 +3618,7 @@ COMMAND_HANDLER(handle_profile_command) const uint32_t MAX_PROFILE_SAMPLE_NUM = 10000; uint32_t offset; - uint32_t num_of_sampels; + uint32_t num_of_samples; int retval = ERROR_OK; COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], offset); @@ -3635,13 +3635,13 @@ COMMAND_HANDLER(handle_profile_command) * Provide a way to use that more efficient mechanism. */ retval = target_profiling(target, samples, MAX_PROFILE_SAMPLE_NUM, - &num_of_sampels, offset); + &num_of_samples, offset); if (retval != ERROR_OK) { free(samples); return retval; } - assert(num_of_sampels <= MAX_PROFILE_SAMPLE_NUM); + assert(num_of_samples <= MAX_PROFILE_SAMPLE_NUM); retval = target_poll(target); if (retval != ERROR_OK) { @@ -3671,7 +3671,7 @@ COMMAND_HANDLER(handle_profile_command) COMMAND_PARSE_NUMBER(u32, CMD_ARGV[3], end_address); } - write_gmon(samples, num_of_sampels, CMD_ARGV[1], + write_gmon(samples, num_of_samples, CMD_ARGV[1], with_range, start_address, end_address); command_print(CMD_CTX, "Wrote %s", CMD_ARGV[1]); |