From 1dd25f2943204ad178fea91aa3ec55f26cf4e768 Mon Sep 17 00:00:00 2001 From: Jacob Hageman Date: Fri, 21 May 2021 22:39:44 +0000 Subject: [PATCH] Fix #1455, Add CFE_SB_DestinationD tag and use for pointers --- modules/core_private/fsw/inc/cfe_sb_destination_typedef.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/core_private/fsw/inc/cfe_sb_destination_typedef.h b/modules/core_private/fsw/inc/cfe_sb_destination_typedef.h index daaf9f95c..bb57a97ff 100644 --- a/modules/core_private/fsw/inc/cfe_sb_destination_typedef.h +++ b/modules/core_private/fsw/inc/cfe_sb_destination_typedef.h @@ -38,7 +38,7 @@ * Note: Changing the size of this structure may require the memory pool * block sizes to change. */ -typedef struct +typedef struct CFE_SB_DestinationD { CFE_SB_PipeId_t PipeId; uint8 Active; @@ -47,8 +47,8 @@ typedef struct uint16 DestCnt; uint8 Scope; uint8 Spare[3]; - void * Prev; - void * Next; + struct CFE_SB_DestinationD* Prev; + struct CFE_SB_DestinationD* Next; } CFE_SB_DestinationD_t; #endif /* CFE_SB_DESTINATION_TYPEDEF_H */