From 089233f00e330205d8a575b3f6a0f34fc2f5bd78 Mon Sep 17 00:00:00 2001 From: Sam Hartman Date: Thu, 10 Oct 2013 13:26:23 -0400 Subject: [PATCH] Don't multiply define the same type --- include/tr_msg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/tr_msg.h b/include/tr_msg.h index 25f05aa..f5d7c60 100644 --- a/include/tr_msg.h +++ b/include/tr_msg.h @@ -47,13 +47,13 @@ enum msg_type { }; /* Union of TR message types to hold message of any type. */ -typedef struct tr_msg { +struct tr_msg { enum msg_type msg_type; union { TID_REQ *tid_req; TID_RESP *tid_resp; }; -} TR_MSG; +}; /* Accessors */ enum msg_type tr_msg_get_msg_type(TR_MSG *msg); -- 2.1.4