-
Notifications
You must be signed in to change notification settings - Fork 30
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
Fix #104, Convert int32
return codes and variables to CFE_Status_t
#105
Fix #104, Convert int32
return codes and variables to CFE_Status_t
#105
Conversation
@@ -44,13 +44,13 @@ | |||
/* */ | |||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |||
|
|||
int32 DS_TableInit(void) | |||
CFE_Status_t DS_TableInit(void) |
Check notice
Code scanning / CodeQL
Long function without assertion
@@ -869,12 +869,12 @@ | |||
/* */ | |||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |||
|
|||
int32 DS_TableCreateCDS(void) | |||
CFE_Status_t DS_TableCreateCDS(void) |
Check notice
Code scanning / CodeQL
Long function without assertion
@@ -510,10 +510,10 @@ | |||
/* */ | |||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |||
|
|||
int32 DS_TableVerifyFilter(const void *TableData) | |||
CFE_Status_t DS_TableVerifyFilter(const void *TableData) |
Check notice
Code scanning / CodeQL
Long function without assertion
@@ -394,10 +394,10 @@ | |||
/* */ | |||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |||
|
|||
int32 DS_TableVerifyDestFile(const void *TableData) | |||
CFE_Status_t DS_TableVerifyDestFile(const void *TableData) |
Check notice
Code scanning / CodeQL
Long function without assertion
@@ -173,10 +173,10 @@ | |||
/* */ | |||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |||
|
|||
int32 DS_AppInitialize(void) | |||
CFE_Status_t DS_AppInitialize(void) |
Check notice
Code scanning / CodeQL
Function too long
@@ -44,13 +44,13 @@ | |||
/* */ | |||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |||
|
|||
int32 DS_TableInit(void) | |||
CFE_Status_t DS_TableInit(void) |
Check notice
Code scanning / CodeQL
Function too long
@@ -869,12 +869,12 @@ | |||
/* */ | |||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |||
|
|||
int32 DS_TableCreateCDS(void) | |||
CFE_Status_t DS_TableCreateCDS(void) |
Check notice
Code scanning / CodeQL
Function too long
@@ -173,10 +173,10 @@ | |||
/* */ | |||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |||
|
|||
int32 DS_AppInitialize(void) | |||
CFE_Status_t DS_AppInitialize(void) |
Check notice
Code scanning / CodeQL
Long function without assertion
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1c93153
to
cd3aec2
Compare
Woops - missed them. |
Looks good. Thank you! |
Checklist
Describe the contribution
int32
return codes and variables should be converted toCFE_Status_t
#104int32
return codes converted over toCFE_Status_t
int32
status
/return
variables holding cFE return codes converted toCFE_Status_t
Testing performed
GitHub CI actions all passing successfully.
Expected behavior changes
No change to behavior.
CFE_Status_t
is more expressive and improves consistency with cFE/cFS.Contributor Info
Avi Weiss @thnkslprpt