aboutsummaryrefslogtreecommitdiffstats
path: root/libparc/parc/developer/test/test_parc_Stopwatch.c
diff options
context:
space:
mode:
Diffstat (limited to 'libparc/parc/developer/test/test_parc_Stopwatch.c')
-rw-r--r--libparc/parc/developer/test/test_parc_Stopwatch.c4
1 files changed, 2 insertions, 2 deletions
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);
}