Skip to content

Commit

Permalink
Merge pull request #118 from thnkslprpt/fix-117-void-returns
Browse files Browse the repository at this point in the history
Fix #117, Remove 'return;' from last line of void functions.
  • Loading branch information
dzbaker committed Oct 3, 2022
2 parents 515cf6f + 25fe117 commit 6586ac2
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions fsw/src/ci_lab_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,6 @@ void CI_LAB_ProcessCommandPacket(CFE_SB_Buffer_t *SBBufPtr)
(unsigned int)CFE_SB_MsgIdToValue(MsgId));
break;
}

return;

} /* End CI_LAB_ProcessCommandPacket */

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * **/
Expand Down Expand Up @@ -254,9 +251,6 @@ void CI_LAB_ProcessGroundCommand(CFE_SB_Buffer_t *SBBufPtr)
default:
break;
}

return;

} /* End of CI_LAB_ProcessGroundCommand() */

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
Expand Down Expand Up @@ -325,9 +319,6 @@ void CI_LAB_ResetCounters_Internal(void)
/* Status of packets ingested by CI task */
CI_LAB_Global.HkTlm.Payload.IngestPackets = 0;
CI_LAB_Global.HkTlm.Payload.IngestErrors = 0;

return;

} /* End of CI_LAB_ResetCounters() */

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * **/
Expand Down Expand Up @@ -389,9 +380,6 @@ void CI_LAB_ReadUpLink(void)
break; /* no (more) messages */
}
}

return;

} /* End of CI_LAB_ReadUpLink() */

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * **/
Expand Down

0 comments on commit 6586ac2

Please sign in to comment.