From 33b53c7f5cef4cf19770a38baa4b627f234322cf Mon Sep 17 00:00:00 2001 From: Giovanni Conte Date: Wed, 16 Jan 2019 12:09:43 +0100 Subject: removed longbow dependency Change-Id: I0c224b26261c7b24699410fc5e41ed6f3fab9815 Signed-off-by: Giovanni Conte --- libparc/parc/developer/test/test_parc_Stopwatch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libparc/parc/developer/test/test_parc_Stopwatch.c') diff --git a/libparc/parc/developer/test/test_parc_Stopwatch.c b/libparc/parc/developer/test/test_parc_Stopwatch.c index 0f205ec7..94072c2f 100644 --- a/libparc/parc/developer/test/test_parc_Stopwatch.c +++ b/libparc/parc/developer/test/test_parc_Stopwatch.c @@ -214,7 +214,7 @@ LONGBOW_TEST_CASE(Specialization, parcStopwatch_Multi) parcStopwatch_Start(a, b, c); sleep(2); uint64_t nanos = parcStopwatch_ElapsedTimeNanos(a); - printf("%llu %llu\n", nanos, nanos / 1000000000); + printf("%lu %lu\n", nanos, nanos / 1000000000); if (nanos > (3000000000)) { parcStopwatch_Display(a, 0); } @@ -231,7 +231,7 @@ LONGBOW_TEST_CASE(Specialization, parcStopwatch_ElapsedTimeNanos) parcStopwatch_StartImpl(instance, NULL); sleep(2); uint64_t nanos = parcStopwatch_ElapsedTimeNanos(instance); - printf("%llu %llu\n", nanos, nanos / 1000000000); + printf("%lu %lu\n", nanos, nanos / 1000000000); if (nanos > (3000000000)) { parcStopwatch_Display(instance, 0); } -- cgit 1.2.3-korg