From 85735925c7aa593958d86b92d6cf58cc32d61e73 Mon Sep 17 00:00:00 2001 From: Spencer Oliver Date: Fri, 27 Apr 2012 14:00:46 +0100 Subject: build: remove clang unused variable increments warnings Change-Id: Ib755474aa46f7233495fae1947bc27cd0b2d6b4f Signed-off-by: Spencer Oliver Reviewed-on: http://openocd.zylin.com/599 Tested-by: jenkins Reviewed-by: Freddie Chopin --- src/rtos/linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/rtos') 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); -- cgit v1.1