aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/heapsort/heapsort_run.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/monniaux/heapsort/heapsort_run.c')
-rw-r--r--test/monniaux/heapsort/heapsort_run.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/monniaux/heapsort/heapsort_run.c b/test/monniaux/heapsort/heapsort_run.c
index 76378067..053822a3 100644
--- a/test/monniaux/heapsort/heapsort_run.c
+++ b/test/monniaux/heapsort/heapsort_run.c
@@ -13,7 +13,7 @@ int main (void) {
heapsort(vec, len);
heapsort_time = get_cycle() - heapsort_time;
printf("sorted=%s\n"
- "heapsort_time=%" PRIu64 "\n",
+ "heapsort_time:%" PRIu64 "\n",
data_vec_is_sorted(vec, len)?"true":"false",
heapsort_time);
free(vec);