Skip to content

Commit

Permalink
Merge pull request #2326 from thnkslprpt:fix-1432-add-element-to-writ…
Browse files Browse the repository at this point in the history
…e-error-event

Fix #1432, Add element to write error event in CFE_EVS_WriteAppDataFileCmd()
  • Loading branch information
dzbaker committed Aug 2, 2024
2 parents 72a4747 + 5b53ca2 commit 1dfc749
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/evs/fsw/src/cfe_evs_task.c
Original file line number Diff line number Diff line change
Expand Up @@ -1269,8 +1269,8 @@ int32 CFE_EVS_WriteAppDataFileCmd(const CFE_EVS_WriteAppDataFileCmd_t *data)
else
{
EVS_SendEvent(CFE_EVS_ERR_WRDATFILE_EID, CFE_EVS_EventType_ERROR,
"Write App Data Command Error: OS_write = %ld, filename = %s", (long)OsStatus,
LocalName);
"Write App Data Command Error: At entry = %d, OS_write = %ld, filename = %s",
(int)EntryCount, (long)OsStatus, LocalName);
break;
}
}
Expand Down

0 comments on commit 1dfc749

Please sign in to comment.