Skip to content

Commit

Permalink
Merge pull request #1374 from jphickey/fix-1311-cfe-status-type
Browse files Browse the repository at this point in the history
Fix #1311, CFE_SUCCESS constant type
  • Loading branch information
astrogeco committed Apr 28, 2021
2 parents 6a9e8c9 + 14faa47 commit bba169a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/core_api/fsw/inc/cfe_error.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ typedef int32 CFE_Status_t;
*
* Operation was performed successfully
*/
#define CFE_SUCCESS (0)
#define CFE_SUCCESS ((CFE_Status_t)0)

/**
* @brief No Counter Increment
Expand Down

0 comments on commit bba169a

Please sign in to comment.