Skip to content

Commit

Permalink
Merge pull request #1564 from skliper/fix1476-sequencecounttype
Browse files Browse the repository at this point in the history
Fix #1476, Use CFE_MSG_SequenceCount_t for seqcnt type
  • Loading branch information
astrogeco authored May 27, 2021
2 parents 9a01dcc + 6333d25 commit b1f36ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/sbr/fsw/src/cfe_sbr_route_unsorted.c
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ void CFE_SBR_IncrementSequenceCounter(CFE_SBR_RouteId_t RouteId)
*-----------------------------------------------------------------*/
CFE_MSG_SequenceCount_t CFE_SBR_GetSequenceCounter(CFE_SBR_RouteId_t RouteId)
{
uint32 seqcnt = 0;
CFE_MSG_SequenceCount_t seqcnt = 0;

if (CFE_SBR_IsValidRouteId(RouteId))
{
Expand Down

0 comments on commit b1f36ee

Please sign in to comment.