Skip to content

Commit

Permalink
Fix nasa#831, Resolve int size mismatch in loop comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
skliper committed Aug 21, 2020
1 parent a148b97 commit 9887b53
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 9887b53

Please sign in to comment.