summaryrefslogtreecommitdiff
path: root/src/target/target.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 08:45:11 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:12 -0800
commit151347585a48ef746d8ffbfed7ba9bd621737b0c (patch)
tree72a16f3168e64b74cc62f4577a6e098100742fe9 /src/target/target.h
parent93459582fd340e4f63efed0fab9abd49a2cb6373 (diff)
downloadopenocd+libswd-151347585a48ef746d8ffbfed7ba9bd621737b0c.tar.gz
openocd+libswd-151347585a48ef746d8ffbfed7ba9bd621737b0c.tar.bz2
openocd+libswd-151347585a48ef746d8ffbfed7ba9bd621737b0c.tar.xz
openocd+libswd-151347585a48ef746d8ffbfed7ba9bd621737b0c.zip
debug_msg_receiver_t -> struct debug_msg_receiver
Remove misleading typedef and redundant suffix from struct debug_msg_receiver.
Diffstat (limited to 'src/target/target.h')
-rw-r--r--src/target/target.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/target.h b/src/target/target.h
index c60960e5..73d63191 100644
--- a/src/target/target.h
+++ b/src/target/target.h
@@ -158,7 +158,7 @@ typedef struct target_s
struct breakpoint_s *breakpoints; /* list of breakpoints */
struct watchpoint *watchpoints; /* list of watchpoints */
struct trace_s *trace_info; /* generic trace information */
- struct debug_msg_receiver_s *dbgmsg;/* list of debug message receivers */
+ struct debug_msg_receiver *dbgmsg;/* list of debug message receivers */
uint32_t dbg_msg_enabled; /* debug message status */
void *arch_info; /* architecture specific information */
struct target_s *next; /* next target in list */