Skip to content

Commit

Permalink
Merge pull request #1565 from skliper/fix1455-destination_tag
Browse files Browse the repository at this point in the history
Fix #1455, Add CFE_SB_DestinationD tag and use for pointers
  • Loading branch information
astrogeco authored May 27, 2021
2 parents 786125e + 8c84e57 commit 9a01dcc
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions modules/core_private/fsw/inc/cfe_sb_destination_typedef.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@
* 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;
uint16 MsgId2PipeLim;
uint16 BuffCount;
uint16 DestCnt;
uint8 Scope;
uint8 Spare[3];
void * Prev;
void * Next;
CFE_SB_PipeId_t PipeId;
uint8 Active;
uint16 MsgId2PipeLim;
uint16 BuffCount;
uint16 DestCnt;
uint8 Scope;
uint8 Spare[3];
struct CFE_SB_DestinationD *Prev;
struct CFE_SB_DestinationD *Next;
} CFE_SB_DestinationD_t;

#endif /* CFE_SB_DESTINATION_TYPEDEF_H */

0 comments on commit 9a01dcc

Please sign in to comment.