From 4952eadd8f04ca3755c30013abc3ea85e35d8654 Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 09:26:19 -0800 Subject: trace_t -> struct trace Remove misleading typedef and redundant suffix from struct trace. --- src/target/trace.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/target/trace.h') diff --git a/src/target/trace.h b/src/target/trace.h index 9fa8d606..cca84d79 100644 --- a/src/target/trace.h +++ b/src/target/trace.h @@ -31,7 +31,7 @@ struct trace_point uint64_t hit_counter; }; -typedef struct trace_s +struct trace { uint32_t num_trace_points; uint32_t trace_points_size; @@ -40,7 +40,7 @@ typedef struct trace_s uint32_t *trace_history; uint32_t trace_history_pos; int trace_history_overflowed; -} trace_t; +}; typedef enum trace_status { -- cgit v1.2.3