trace_t -> struct trace

Remove misleading typedef and redundant suffix from struct trace.
This commit is contained in:
Zachary T Welch
2009-11-13 09:26:19 -08:00
parent d90063ffc5
commit 4952eadd8f
4 changed files with 8 additions and 8 deletions

View File

@@ -4315,7 +4315,7 @@ static int target_create(Jim_GetOptInfo *goi)
target->halt_issued = false;
/* initialize trace information */
target->trace_info = malloc(sizeof(trace_t));
target->trace_info = malloc(sizeof(struct trace));
target->trace_info->num_trace_points = 0;
target->trace_info->trace_points_size = 0;
target->trace_info->trace_points = NULL;