From 62cbb8496c7a6ed8de3255d721e75f98d3cd94fd Mon Sep 17 00:00:00 2001 From: Avi Date: Tue, 27 Sep 2022 14:37:55 +1000 Subject: [PATCH 1/2] Fix #120, Remove unnecessary parentheses around return values. --- fsw/src/sch_lab_app.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fsw/src/sch_lab_app.c b/fsw/src/sch_lab_app.c index 2e83151..a8475e0 100644 --- a/fsw/src/sch_lab_app.c +++ b/fsw/src/sch_lab_app.c @@ -199,7 +199,7 @@ int32 SCH_LAB_AppInit(void) { CFE_ES_WriteToSysLog("SCH_LAB: Error Registering SCH_LAB_SchTbl, RC = 0x%08lX\n", (unsigned long)Status); - return (Status); + return Status; } else { @@ -212,7 +212,7 @@ int32 SCH_LAB_AppInit(void) CFE_ES_WriteToSysLog("SCH_LAB: Error Loading Table SCH_LAB_SchTbl, RC = 0x%08lX\n", (unsigned long)Status); CFE_TBL_ReleaseAddress(SCH_LAB_Global.TblHandle); - return (Status); + return Status; } } @@ -225,7 +225,7 @@ int32 SCH_LAB_AppInit(void) CFE_ES_WriteToSysLog("SCH_LAB: Error Getting Table's Address SCH_LAB_SchTbl, RC = 0x%08lX\n", (unsigned long)Status); - return (Status); + return Status; } /* @@ -294,6 +294,6 @@ int32 SCH_LAB_AppInit(void) OS_printf("SCH Lab Initialized.%s\n", SCH_LAB_VERSION_STRING); - return (CFE_SUCCESS); + return CFE_SUCCESS; } /*End of AppInit*/ From 442fb25212d4bb1ec5caaafd073b9eea7597498c Mon Sep 17 00:00:00 2001 From: Dylan Date: Mon, 3 Oct 2022 16:55:10 -0400 Subject: [PATCH 2/2] Bump to v2.5.0-rc4+dev35 --- README.md | 4 ++++ fsw/src/sch_lab_version.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index aebe86b..788c84e 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,10 @@ To change the list of packets that sch_lab sends out, edit the schedule table lo ## Version History +### Development Build: v2.5.0-rc4:dev35 +- Remove unnecessary parentheses around return values. +- See + ### Development Build: v2.5.0-rc4+dev31 - Update cmake mimimum required to something more recent - See diff --git a/fsw/src/sch_lab_version.h b/fsw/src/sch_lab_version.h index 1075cac..97f0a0a 100644 --- a/fsw/src/sch_lab_version.h +++ b/fsw/src/sch_lab_version.h @@ -25,7 +25,7 @@ */ /* Development Build Macro Definitions */ -#define SCH_LAB_BUILD_NUMBER 31 /*!< Development Build: Number of commits since baseline */ +#define SCH_LAB_BUILD_NUMBER 35 /*!< Development Build: Number of commits since baseline */ #define SCH_LAB_BUILD_BASELINE \ "v2.5.0-rc4" /*!< Development Build: git tag that is the base for the current development */