We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2f53b1c + 823b5f1 commit cb86b31Copy full SHA for cb86b31
1 file changed
fsw/src/fm_table_utils.c
@@ -55,7 +55,9 @@ CFE_Status_t FM_TableInit(void)
55
if (Status == CFE_SUCCESS)
56
{
57
/* Make an attempt to load the default table data - OK if this fails */
58
- CFE_TBL_Load(FM_AppData.MonitorTableHandle, CFE_TBL_SRC_FILE, FM_TABLE_DEF_NAME);
+ /* SAD: Suppress Ignored Return Value warning from CodeSonar. CFE_TBL_Load() will send event message if
59
+ * there is any error */
60
+ (void)CFE_TBL_Load(FM_AppData.MonitorTableHandle, CFE_TBL_SRC_FILE, FM_TABLE_DEF_NAME);
61
62
/* Allow cFE a chance to dump, update, etc. */
63
FM_AcquireTablePointers();
0 commit comments