Skip to content

Commit

Permalink
Fix #1502, Correct type of ActiveTableFlag variable
Browse files Browse the repository at this point in the history
  • Loading branch information
thnkslprpt committed Oct 26, 2023
1 parent 0316672 commit c999fc6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/tbl/config/default_cfe_tbl_msgdefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ typedef struct CFE_TBL_LoadCmd_Payload
*/
typedef struct CFE_TBL_DumpCmd_Payload
{
uint16 ActiveTableFlag; /**< \brief #CFE_TBL_BufferSelect_INACTIVE=Inactive Table,
#CFE_TBL_BufferSelect_ACTIVE=Active Table */
CFE_TBL_BufferSelect_Enum_t ActiveTableFlag; /**< \brief #CFE_TBL_BufferSelect_INACTIVE=Inactive Table,
#CFE_TBL_BufferSelect_ACTIVE=Active Table */
/**< Selects either the "Inactive"
(#CFE_TBL_BufferSelect_INACTIVE) buffer or the
"Active" (#CFE_TBL_BufferSelect_ACTIVE) buffer
Expand All @@ -75,8 +75,8 @@ typedef struct CFE_TBL_DumpCmd_Payload
*/
typedef struct CFE_TBL_ValidateCmd_Payload
{
uint16 ActiveTableFlag; /**< \brief #CFE_TBL_BufferSelect_INACTIVE=Inactive Table,
#CFE_TBL_BufferSelect_ACTIVE=Active Table */
CFE_TBL_BufferSelect_Enum_t ActiveTableFlag; /**< \brief #CFE_TBL_BufferSelect_INACTIVE=Inactive Table,
#CFE_TBL_BufferSelect_ACTIVE=Active Table */
/**< Selects either the "Inactive"
(#CFE_TBL_BufferSelect_INACTIVE) buffer or the
"Active" (#CFE_TBL_BufferSelect_ACTIVE) buffer
Expand Down

0 comments on commit c999fc6

Please sign in to comment.