Skip to content

Commit

Permalink
Merge pull request nasa#832 from skliper/fix831-int-compare-mismatch
Browse files Browse the repository at this point in the history
Fix nasa#831, Resolve int size mismatch in loop comparison
  • Loading branch information
yammajamma authored Aug 26, 2020
2 parents 2ab77d0 + 9887b53 commit 29b11e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fsw/cfe-core/src/sb/cfe_sb_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -1182,7 +1182,7 @@ int32 CFE_SB_SendMsgFull(CFE_SB_Msg_t *MsgPtr,
uint16 TotalMsgSize;
CFE_SB_MsgRouteIdx_t RtgTblIdx;
uint32 TskId = 0;
uint16 i;
uint32 i;
char FullName[(OS_MAX_API_NAME * 2)];
CFE_SB_EventBuf_t SBSndErr;
char PipeName[OS_MAX_API_NAME] = {'\0'};
Expand Down

0 comments on commit 29b11e5

Please sign in to comment.