Skip to content

Commit

Permalink
Fix #1455, Add CFE_SB_DestinationD tag and use for pointers
Browse files Browse the repository at this point in the history
  • Loading branch information
skliper committed May 21, 2021
1 parent 8443a46 commit 1dd25f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/core_private/fsw/inc/cfe_sb_destination_typedef.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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 */

0 comments on commit 1dd25f2

Please sign in to comment.