Skip to content

Commit

Permalink
IC HOTFIX: Use lowercase "true"
Browse files Browse the repository at this point in the history
  • Loading branch information
astrogeco committed Apr 29, 2020
1 parent 6ef8a02 commit dc10f47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fsw/cfe-core/src/tbl/cfe_tbl_internal.c
Original file line number Diff line number Diff line change
Expand Up @@ -1398,7 +1398,7 @@ int32 CFE_TBL_CleanUpApp(uint32 AppId)
for (i=0; i<CFE_PLATFORM_TBL_MAX_NUM_HANDLES; i++)
{
/* Check to see if the Handle belongs to the Application being deleted */
if (CFE_TBL_TaskData.Handles[i].AppId == AppId && CFE_TBL_TaskData.Handles[i].UsedFlag == TRUE)
if (CFE_TBL_TaskData.Handles[i].AppId == AppId && CFE_TBL_TaskData.Handles[i].UsedFlag == true)
{
/* Delete the handle (and the table, if the App owned it) */
/* Get a pointer to the relevant Access Descriptor */
Expand Down

0 comments on commit dc10f47

Please sign in to comment.