Skip to content

Commit

Permalink
Merge pull request #116 from thnkslprpt/fix-115-return-parentheses
Browse files Browse the repository at this point in the history
Fix #115, Remove unnecessary parentheses around return values.
  • Loading branch information
dzbaker committed Oct 3, 2022
2 parents c5aba5c + 74c0e44 commit 515cf6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fsw/src/ci_lab_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,6 @@ bool CI_LAB_VerifyCmdLength(CFE_MSG_Message_t *MsgPtr, size_t ExpectedLength)
CI_LAB_Global.HkTlm.Payload.CommandErrorCounter++;
}

return (result);
return result;

} /* End of CI_LAB_VerifyCmdLength() */

0 comments on commit 515cf6f

Please sign in to comment.