Remove unnecessary casts
Change-Id: Ia97283707282ccccdc707c969f59337313b4e291 Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Reviewed-on: http://openocd.zylin.com/1767 Tested-by: jenkins Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
This commit is contained in:
committed by
Spencer Oliver
parent
704082443d
commit
ba2fbe2247
@@ -57,7 +57,7 @@ struct log_capture_state {
|
||||
static void tcl_output(void *privData, const char *file, unsigned line,
|
||||
const char *function, const char *string)
|
||||
{
|
||||
struct log_capture_state *state = (struct log_capture_state *)privData;
|
||||
struct log_capture_state *state = privData;
|
||||
Jim_AppendString(state->interp, state->output, string, strlen(string));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user