Skip to content

Commit

Permalink
HOTFIX: add required cast to printf output
Browse files Browse the repository at this point in the history
  • Loading branch information
jphickey committed Sep 1, 2023
1 parent eda9fc5 commit 5c17b64
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/cfe_testcase/src/sb_performance_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ void TestBulkTransmitRecv(void)
CFE_PSP_GetTime(&ElapsedTime);
ElapsedTime = OS_TimeSubtract(ElapsedTime, StartTime);

UtAssert_MIR("Elapsed time for SB bulk message test: %lu usec", OS_TimeGetTotalMicroseconds(ElapsedTime));
UtAssert_MIR("Elapsed time for SB bulk message test: %lu usec",
(unsigned long)OS_TimeGetTotalMicroseconds(ElapsedTime));
}

void SBPerformanceTestSetup(void)
Expand Down

0 comments on commit 5c17b64

Please sign in to comment.