Skip to content

Commit

Permalink
HotFix #142, correct errors with whitespace application
Browse files Browse the repository at this point in the history
Corrects errors from PR 142 where return and break appear to have been
inadvertently removed
  • Loading branch information
jphickey committed Jan 19, 2023
1 parent 5b4185c commit 9df3ead
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fsw/src/to_lab_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ int32 TO_LAB_init(void)
{
CFE_EVS_SendEvent(TO_LAB_TBL_ERR_EID, CFE_EVS_EventType_ERROR, "L%d TO Can't register table status %i",
__LINE__, (int)status);
return status;
}

status = CFE_TBL_Load(TO_SubTblHandle, CFE_TBL_SRC_FILE, "/cf/to_lab_sub.tbl");
Expand Down Expand Up @@ -287,6 +288,7 @@ void TO_LAB_process_commands(void)
CFE_EVS_SendEvent(TO_LAB_MSGID_ERR_EID, CFE_EVS_EventType_ERROR,
"L%d TO: Invalid Msg ID Rcvd 0x%x", __LINE__,
(unsigned int)CFE_SB_MsgIdToValue(MsgId));
break;
}
break;
default:
Expand Down

0 comments on commit 9df3ead

Please sign in to comment.