diff --git a/README.md b/README.md index f81b98b..408b4ce 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,10 @@ sample_lib implements SAMPLE_Function, as an example for how to build and link a ## Version History +### Development Build: v1.3.0-rc4+dev20 +- Remove unnecessary parentheses around return values. +- See + ### Development Build: v1.3.0-rc4+dev16 - Update Copyright Headers diff --git a/fsw/src/sample_lib.c b/fsw/src/sample_lib.c index 1a6fcbf..0b45272 100644 --- a/fsw/src/sample_lib.c +++ b/fsw/src/sample_lib.c @@ -76,7 +76,7 @@ int32 SAMPLE_LIB_Function(void) { OS_printf("SAMPLE_LIB_Function called, buffer=\'%s\'\n", SAMPLE_LIB_Buffer); - return (CFE_SUCCESS); + return CFE_SUCCESS; } /* End SAMPLE_LIB_Function */ diff --git a/fsw/src/sample_lib_version.h b/fsw/src/sample_lib_version.h index 586156e..0e35ebd 100644 --- a/fsw/src/sample_lib_version.h +++ b/fsw/src/sample_lib_version.h @@ -26,7 +26,7 @@ /* Development Build Macro Definitions */ -#define SAMPLE_LIB_BUILD_NUMBER 16 /*!< Development Build: Number of commits since baseline */ +#define SAMPLE_LIB_BUILD_NUMBER 20 /*!< Development Build: Number of commits since baseline */ #define SAMPLE_LIB_BUILD_BASELINE \ "v1.3.0-rc4" /*!< Development Build: git tag that is the base for the current development */