Skip to content

Commit

Permalink
Fix #60, incorrect conversion specifier
Browse files Browse the repository at this point in the history
Corrects a format mismatch warning on some platforms.
  • Loading branch information
jphickey committed Apr 27, 2020
1 parent 1e33c19 commit 4e2847e
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 4e2847e

Please sign in to comment.