Skip to content

Commit

Permalink
Merge pull request #61 from jphickey/fix-60-format-err
Browse files Browse the repository at this point in the history
Fix #60, incorrect conversion specifier
  • Loading branch information
astrogeco authored May 8, 2020
2 parents af9b210 + 4e2847e commit 7050751
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unit-test/coveragetest/coveragetest_sample_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ void Test_SAMPLE_AppMain(void)
* log will show what the incorrect value was.
*/
UtAssert_True(SAMPLE_AppData.RunStatus == CFE_ES_RunStatus_APP_ERROR,
"SAMPLE_AppData.RunStatus (%d) == CFE_ES_RunStatus_APP_ERROR",
SAMPLE_AppData.RunStatus);
"SAMPLE_AppData.RunStatus (%lu) == CFE_ES_RunStatus_APP_ERROR",
(unsigned long)SAMPLE_AppData.RunStatus);


/*
Expand Down

0 comments on commit 7050751

Please sign in to comment.