diff --git a/README.md b/README.md index 9900451..9385e8c 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,10 @@ ci_lab is a simple command uplink application that accepts CCSDS telecommand pac ## Changelog +### Development Build: v2.5.0-rc4+dev30 +- Remove unnecessary parentheses around return values. +- Remove 'return;' from last line of void functions. +- See and ### Development Build: v2.5.0-rc4+dev24 - Update cmake mimimum required to something more recent diff --git a/fsw/src/ci_lab_app.c b/fsw/src/ci_lab_app.c index 297fabe..d26b43b 100644 --- a/fsw/src/ci_lab_app.c +++ b/fsw/src/ci_lab_app.c @@ -413,5 +413,5 @@ bool CI_LAB_VerifyCmdLength(CFE_MSG_Message_t *MsgPtr, size_t ExpectedLength) CI_LAB_Global.HkTlm.Payload.CommandErrorCounter++; } - return (result); + return result; } diff --git a/fsw/src/ci_lab_version.h b/fsw/src/ci_lab_version.h index 9c1a453..163a6a4 100644 --- a/fsw/src/ci_lab_version.h +++ b/fsw/src/ci_lab_version.h @@ -25,7 +25,7 @@ /* Development Build Macro Definitions */ -#define CI_LAB_BUILD_NUMBER 24 /*!< Development Build: Number of commits since baseline */ +#define CI_LAB_BUILD_NUMBER 30 /*!< Development Build: Number of commits since baseline */ #define CI_LAB_BUILD_BASELINE \ "v2.5.0-rc4" /*!< Development Build: git tag that is the base for the current development */