etmv1_trace_data_t -> struct etmv1_trace_data

Remove misleading typedef and redundant suffix from struct etmv1_trace_data.
This commit is contained in:
Zachary T Welch
2009-11-13 08:42:46 -08:00
parent e2001ba211
commit 99614219ad
4 changed files with 6 additions and 6 deletions

View File

@@ -208,7 +208,7 @@ static int oocd_trace_read_trace(etm_context_t *etm_ctx)
}
etm_ctx->trace_depth = num_frames * 16;
etm_ctx->trace_data = malloc(sizeof(etmv1_trace_data_t) * etm_ctx->trace_depth);
etm_ctx->trace_data = malloc(sizeof(struct etmv1_trace_data) * etm_ctx->trace_depth);
for (i = 0; i < num_frames * 16; i++)
{