@@ -62,7 +62,7 @@ int32 CFE_TBL_Register( CFE_TBL_Handle_t *TblHandlePtr,
62
62
CFE_TBL_RegistryRec_t * RegRecPtr = NULL ;
63
63
CFE_TBL_LoadBuff_t * WorkingBufferPtr ;
64
64
CFE_TBL_CritRegRec_t * CritRegRecPtr = NULL ;
65
- int32 Status = CFE_SUCCESS ;
65
+ int32 Status ;
66
66
size_t NameLen = 0 ;
67
67
int16 RegIndx = -1 ;
68
68
uint32 ThisAppId ;
@@ -516,7 +516,7 @@ int32 CFE_TBL_Register( CFE_TBL_Handle_t *TblHandlePtr,
516
516
int32 CFE_TBL_Share ( CFE_TBL_Handle_t * TblHandlePtr ,
517
517
const char * TblName )
518
518
{
519
- int32 Status = CFE_SUCCESS ;
519
+ int32 Status ;
520
520
uint32 ThisAppId ;
521
521
int16 RegIndx = CFE_TBL_NOT_FOUND ;
522
522
CFE_TBL_AccessDescriptor_t * AccessDescPtr = NULL ;
@@ -1048,7 +1048,7 @@ int32 CFE_TBL_Update( CFE_TBL_Handle_t TblHandle )
1048
1048
int32 CFE_TBL_GetAddress ( void * * TblPtr ,
1049
1049
CFE_TBL_Handle_t TblHandle )
1050
1050
{
1051
- int32 Status = CFE_SUCCESS ;
1051
+ int32 Status ;
1052
1052
uint32 ThisAppId ;
1053
1053
1054
1054
/* Assume failure at returning the table address */
@@ -1124,7 +1124,7 @@ int32 CFE_TBL_GetAddresses( void **TblPtrs[],
1124
1124
const CFE_TBL_Handle_t TblHandles [] )
1125
1125
{
1126
1126
uint16 i ;
1127
- int32 Status = CFE_SUCCESS ;
1127
+ int32 Status ;
1128
1128
uint32 ThisAppId ;
1129
1129
1130
1130
/* Assume failure at returning the table addresses */
@@ -1203,7 +1203,7 @@ int32 CFE_TBL_ReleaseAddresses( uint16 NumTables,
1203
1203
1204
1204
int32 CFE_TBL_Validate ( CFE_TBL_Handle_t TblHandle )
1205
1205
{
1206
- int32 Status = CFE_SUCCESS ;
1206
+ int32 Status ;
1207
1207
uint32 ThisAppId ;
1208
1208
CFE_TBL_RegistryRec_t * RegRecPtr ;
1209
1209
CFE_TBL_AccessDescriptor_t * AccessDescPtr ;
@@ -1416,7 +1416,7 @@ int32 CFE_TBL_Manage( CFE_TBL_Handle_t TblHandle )
1416
1416
1417
1417
int32 CFE_TBL_GetStatus ( CFE_TBL_Handle_t TblHandle )
1418
1418
{
1419
- int32 Status = CFE_SUCCESS ;
1419
+ int32 Status ;
1420
1420
uint32 ThisAppId ;
1421
1421
CFE_TBL_RegistryRec_t * RegRecPtr ;
1422
1422
CFE_TBL_AccessDescriptor_t * AccessDescPtr ;
@@ -1521,7 +1521,7 @@ int32 CFE_TBL_GetInfo( CFE_TBL_Info_t *TblInfoPtr, const char *TblName )
1521
1521
1522
1522
int32 CFE_TBL_DumpToBuffer ( CFE_TBL_Handle_t TblHandle )
1523
1523
{
1524
- int32 Status = CFE_SUCCESS ;
1524
+ int32 Status ;
1525
1525
CFE_TBL_AccessDescriptor_t * AccessDescPtr = NULL ;
1526
1526
CFE_TBL_RegistryRec_t * RegRecPtr = NULL ;
1527
1527
CFE_TBL_DumpControl_t * DumpCtrlPtr = NULL ;
@@ -1565,7 +1565,7 @@ int32 CFE_TBL_DumpToBuffer( CFE_TBL_Handle_t TblHandle )
1565
1565
1566
1566
int32 CFE_TBL_Modified ( CFE_TBL_Handle_t TblHandle )
1567
1567
{
1568
- int32 Status = CFE_SUCCESS ;
1568
+ int32 Status ;
1569
1569
CFE_TBL_AccessDescriptor_t * AccessDescPtr = NULL ;
1570
1570
CFE_TBL_RegistryRec_t * RegRecPtr = NULL ;
1571
1571
CFE_TBL_Handle_t AccessIterator ;
@@ -1642,7 +1642,7 @@ int32 CFE_TBL_Modified( CFE_TBL_Handle_t TblHandle )
1642
1642
1643
1643
int32 CFE_TBL_NotifyByMessage (CFE_TBL_Handle_t TblHandle , CFE_SB_MsgId_t MsgId , uint16 CommandCode , uint32 Parameter )
1644
1644
{
1645
- int32 Status = CFE_SUCCESS ;
1645
+ int32 Status ;
1646
1646
CFE_TBL_AccessDescriptor_t * AccessDescPtr = NULL ;
1647
1647
CFE_TBL_RegistryRec_t * RegRecPtr = NULL ;
1648
1648
uint32 ThisAppId ;
0 commit comments