diff options
author | Spencer Oliver <spen@spen-soft.co.uk> | 2012-04-27 14:00:46 +0100 |
---|---|---|
committer | Spencer Oliver <spen@spen-soft.co.uk> | 2012-05-04 08:15:30 +0000 |
commit | 85735925c7aa593958d86b92d6cf58cc32d61e73 (patch) | |
tree | 1eed2b170282a500aeae93bd1c9980d946c04c82 /src | |
parent | ee38fff78bf0572f6dcef94b11aa562b29b09125 (diff) | |
download | riscv-openocd-85735925c7aa593958d86b92d6cf58cc32d61e73.zip riscv-openocd-85735925c7aa593958d86b92d6cf58cc32d61e73.tar.gz riscv-openocd-85735925c7aa593958d86b92d6cf58cc32d61e73.tar.bz2 |
build: remove clang unused variable increments warnings
Change-Id: Ib755474aa46f7233495fae1947bc27cd0b2d6b4f
Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk>
Reviewed-on: http://openocd.zylin.com/599
Tested-by: jenkins
Reviewed-by: Freddie Chopin <freddie.chopin@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/flash/nor/at91sam3.c | 1 | ||||
-rw-r--r-- | src/flash/nor/at91sam4.c | 1 | ||||
-rw-r--r-- | src/rtos/linux.c | 2 |
3 files changed, 1 insertions, 3 deletions
diff --git a/src/flash/nor/at91sam3.c b/src/flash/nor/at91sam3.c index 37b6dd7..aff66df 100644 --- a/src/flash/nor/at91sam3.c +++ b/src/flash/nor/at91sam3.c @@ -3274,7 +3274,6 @@ static int sam3_write(struct flash_bank *bank, r = sam3_page_write(pPrivate, page_cur, pagebuffer); if (r != ERROR_OK) goto done; - buffer += count; } LOG_DEBUG("Done!"); r = ERROR_OK; diff --git a/src/flash/nor/at91sam4.c b/src/flash/nor/at91sam4.c index 4bc511c..00a54fe 100644 --- a/src/flash/nor/at91sam4.c +++ b/src/flash/nor/at91sam4.c @@ -2066,7 +2066,6 @@ static int sam4_write(struct flash_bank *bank, r = sam4_page_write(pPrivate, page_cur, pagebuffer); if (r != ERROR_OK) goto done; - buffer += count; } LOG_DEBUG("Done!"); r = ERROR_OK; diff --git a/src/rtos/linux.c b/src/rtos/linux.c index e249ff4..198f66e 100644 --- a/src/rtos/linux.c +++ b/src/rtos/linux.c @@ -1215,7 +1215,7 @@ int linux_thread_extra_info(struct target *target, sprintf(tmp_str_ptr, "%d", (int)temp->pid); tmp_str_ptr += sprintf(tmp_str_ptr, "%s", " | "); tmp_str_ptr += sprintf(tmp_str_ptr, "%s", name); - tmp_str_ptr += sprintf(tmp_str_ptr, "%s", temp->name); + sprintf(tmp_str_ptr, "%s", temp->name); char *hex_str = (char *)calloc(1, strlen(tmp_str) * 2 + 1); str_to_hex(hex_str, tmp_str); |