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 */