aboutsummaryrefslogtreecommitdiff
path: root/src/target/arm_semihosting.c
diff options
context:
space:
mode:
authorAndreas Fritiofson <andreas.fritiofson@gmail.com>2013-09-28 17:28:25 +0200
committerSpencer Oliver <spen@spen-soft.co.uk>2013-10-31 20:42:47 +0000
commit13f6c889ab9b6e5b1c4f48fca9807fdc1fb83f42 (patch)
treefd5412ade9345f19316dcbee5ea39f961f34509a /src/target/arm_semihosting.c
parent517ba0690dcc9e859a05df2113ce32401a5ab254 (diff)
downloadriscv-openocd-13f6c889ab9b6e5b1c4f48fca9807fdc1fb83f42.zip
riscv-openocd-13f6c889ab9b6e5b1c4f48fca9807fdc1fb83f42.tar.gz
riscv-openocd-13f6c889ab9b6e5b1c4f48fca9807fdc1fb83f42.tar.bz2
Remove unnecessary (void *)
When pointer casts are needed, cast directly to the correct type, instead of going via void*. Don't explicitly cast to void* if it would have been done implicitly. Change-Id: I4093209200051c5eb62847d00a4b9c8567480068 Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Reviewed-on: http://openocd.zylin.com/1669 Tested-by: jenkins Reviewed-by: Mathias Küster <kesmtp@freenet.de> Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
Diffstat (limited to 'src/target/arm_semihosting.c')
-rw-r--r--src/target/arm_semihosting.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/arm_semihosting.c b/src/target/arm_semihosting.c
index bdf572e..06a433f 100644
--- a/src/target/arm_semihosting.c
+++ b/src/target/arm_semihosting.c
@@ -323,7 +323,7 @@ static int do_semihosting(struct target *target)
if (l < s)
result = -1;
else {
- retval = target_write_buffer(target, a, s, (void *)arg);
+ retval = target_write_buffer(target, a, s, (uint8_t *)arg);
if (retval != ERROR_OK)
return retval;
result = 0;