Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cFE Integration candidate: 2021-03-23 #1243

Merged
merged 20 commits into from
Mar 22, 2021
Merged
Changes from 2 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
bedca93
Fix #1033, remove false child tasks statement.
zanzaben Mar 11, 2021
54d5162
Fix #590, Clarify the documentation on SB MsgId
zanzaben Mar 11, 2021
3f596eb
Fix #1226, Add Contributing Guide
arielswalker Mar 16, 2021
a00a788
Fix #1217, locally define BIG/LITTLE order macros
jphickey Mar 10, 2021
10747de
Fix #1195, Avoid implicit conversion from vsnprintf errors
skliper Mar 17, 2021
cd8959b
Fix #1200, Correct local type for CFE_TBL_FindTableInRegistry returns
skliper Mar 17, 2021
6b76dd7
Fix #1200, Report status in CFE_ES_FileWriteByteCntErr event
skliper Mar 17, 2021
ba29f16
Fix #1204, Use mask instead of cast to alter value
skliper Mar 16, 2021
31aae76
Fix #1208, Cast isspace input to unsigned char
skliper Mar 16, 2021
b878c4e
Fix #1221, Use quotes for local includes
skliper Mar 16, 2021
b44c4b6
Merge pull request #1218 from jphickey/fix-1217-bit-order
astrogeco Mar 18, 2021
4b58081
Merge pull request #1193 from zanzaben/fix1033_Update_App_Dev_Guide
astrogeco Mar 18, 2021
68cd788
Merge pull request #1235 from skliper/fix1195-vsnprintf_error
astrogeco Mar 18, 2021
1e05768
Merge pull request #1220 from zanzaben/fix590_clarify_SB_MsgId_doc
astrogeco Mar 18, 2021
cab1e18
Merge pull request #1230 from skliper/fix1208-negative_isspace
astrogeco Mar 18, 2021
63f4eb2
Merge pull request #1231 from skliper/fix1204-alter_with_mask
astrogeco Mar 18, 2021
c642d5e
Merge pull request #1232 from skliper/fix1200-fix_types
astrogeco Mar 18, 2021
6001050
Merge pull request #1228 from skliper/fix1221-include_quotes
astrogeco Mar 18, 2021
0e61b52
Merge pull request #1227 from ArielSAdamsNASA/fix-1226-add_contributi…
astrogeco Mar 18, 2021
313bcc0
IC:2021-03-23 Bump to v6.8.0-rc1+dev436
astrogeco Mar 22, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/es/fsw/src/cfe_es_syslog.c
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ void CFE_ES_SysLog_vsnprintf(char *Buffer, size_t BufferSize, const char *SpecSt
*
* Strip off all trailing whitespace, and add back a single newline
*/
while (StringLen > 0 && isspace((int)Buffer[StringLen - 1]))
while (StringLen > 0 && isspace((unsigned char)Buffer[StringLen - 1]))
{
--StringLen;
}
Expand Down