Skip to content

Commit

Permalink
Merge pull request #2459 from thnkslprpt:fix-1502-update-ActiveTableF…
Browse files Browse the repository at this point in the history
…lag-type

Fix #1502, Correct type of ActiveTableFlag variable
  • Loading branch information
dzbaker committed Dec 30, 2024
2 parents 2f0e1a2 + c999fc6 commit 3c75c32
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 3c75c32

Please sign in to comment.