Skip to content

Commit

Permalink
Merge pull request #226 from nasa/integration-candidate
Browse files Browse the repository at this point in the history
cFS-GroundSystem Integration candidate: Caelum-rc4+dev23
  • Loading branch information
dzbaker authored Oct 3, 2022
2 parents 072f6ad + 9a1e275 commit 32f361c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ See [Guide-GroundSystem.md](https://github.com/nasa/cFS-GroundSystem/blob/master

## Version History


### Development Build: v3.0.0-rc4+dev25

- Remove 'return;' from last line of void functions.
- See <https://github.com/nasa/cFS-GroundSystem/pull/222>

### Development Build: v3.0.0-rc4+dev19

- Update Copyright Headers
Expand Down
4 changes: 0 additions & 4 deletions Subsystems/cmdUtil/cmdUtil.c
Original file line number Diff line number Diff line change
Expand Up @@ -366,8 +366,6 @@ void ProcessField(uint16_t *orig, const char *in, const uint16_t mask, bool fiel
}

*orig = htobe16((be16toh(*orig) & ~mask) | (templong & mask));

return;
}

/******************************************************************************
Expand All @@ -387,8 +385,6 @@ void CopyData(unsigned char *pkt, unsigned int *startbyte, char *in, unsigned in
/* Copy data into packet buffer and move start byte */
memcpy(&pkt[*startbyte], in, nbytes);
*startbyte += nbytes;

return;
}

/******************************************************************************
Expand Down
2 changes: 1 addition & 1 deletion _version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#

# Development Build Macro Definitions
_cFS_GrndSys_build_number = 19
_cFS_GrndSys_build_number = 25
_cFS_GrndSys_build_baseline = "v3.0.0-rc4"

# Version Number Definitions see doxygen docs for definitions
Expand Down

0 comments on commit 32f361c

Please sign in to comment.