debug_msg_receiver_t -> struct debug_msg_receiver

Remove misleading typedef and redundant suffix from struct debug_msg_receiver.
This commit is contained in:
Zachary T Welch
2009-11-13 08:45:11 -08:00
parent 93459582fd
commit 151347585a
3 changed files with 13 additions and 13 deletions

View File

@@ -36,11 +36,11 @@ typedef enum target_req_cmd
/* TARGET_REQ_SEMIHOSTING, */
} target_req_cmd_t;
typedef struct debug_msg_receiver_s
struct debug_msg_receiver
{
command_context_t *cmd_ctx;
struct debug_msg_receiver_s *next;
} debug_msg_receiver_t;
struct debug_msg_receiver *next;
};
int target_request(target_t *target, uint32_t request);
int delete_debug_msg_receiver(struct command_context_s *cmd_ctx,