Skip to content

Commit

Permalink
Fix #1432, Add element to write error event in `CFE_EVS_WriteAppDataF…
Browse files Browse the repository at this point in the history
…ileCmd`
  • Loading branch information
thnkslprpt committed May 5, 2023
1 parent e3b6767 commit 5b53ca2
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 @@ -1268,8 +1268,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 5b53ca2

Please sign in to comment.