Skip to content

Commit

Permalink
Fix #2072, Resolve build failure for time cfg source
Browse files Browse the repository at this point in the history
  • Loading branch information
skliper committed Mar 24, 2022
1 parent a39b0a6 commit d076781
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/time/fsw/src/cfe_time_tone.c
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ int32 CFE_TIME_ToneSendMET(CFE_TIME_SysTime_t NewMET)
/*
** Send "time at the tone" command data packet...
*/
CFE_SB_TransmitMsg(&CFE_TIME_Global.ToneDataCmd.CmdHeader.Msg, false);
CFE_SB_TransmitMsg(&CFE_TIME_Global.ToneDataCmd.CommandHeader.Msg, false);

/*
** Count of "time at the tone" commands sent with external data...
Expand Down Expand Up @@ -425,7 +425,7 @@ int32 CFE_TIME_ToneSendGPS(CFE_TIME_SysTime_t NewTime, int16 NewLeaps)
/*
** Send "time at the tone" command data packet...
*/
CFE_SB_TransmitMsg(&CFE_TIME_Global.ToneDataCmd.CmdHeader.Msg, false);
CFE_SB_TransmitMsg(&CFE_TIME_Global.ToneDataCmd.CommandHeader.Msg, false);

/*
** Count of "time at the tone" commands sent with external data...
Expand Down Expand Up @@ -567,7 +567,7 @@ int32 CFE_TIME_ToneSendTime(CFE_TIME_SysTime_t NewTime)
/*
** Send "time at the tone" command data packet...
*/
CFE_SB_TransmitMsg(&CFE_TIME_Global.ToneDataCmd.CmdHeader.Msg, false);
CFE_SB_TransmitMsg(&CFE_TIME_Global.ToneDataCmd.CommandHeader.Msg, false);

/*
** Count of "time at the tone" commands sent with external data...
Expand Down

0 comments on commit d076781

Please sign in to comment.