Skip to content

Commit

Permalink
Merge pull request #87 from nasa/integration-candidate
Browse files Browse the repository at this point in the history
sample_lib Integration candidate: Caelum-rc4+dev23
  • Loading branch information
dzbaker authored Oct 3, 2022
2 parents f47613f + 73e5357 commit 286bb59
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/nasa/sample_lib/pull/84>

### Development Build: v1.3.0-rc4+dev16

- Update Copyright Headers
Expand Down
2 changes: 1 addition & 1 deletion fsw/src/sample_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

Expand Down
2 changes: 1 addition & 1 deletion fsw/src/sample_lib_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

Expand Down

0 comments on commit 286bb59

Please sign in to comment.