From b3cb03ae90aeb1d5d6bc2bab6d88a8087dc4cc27 Mon Sep 17 00:00:00 2001 From: Koen Zandberg Date: Tue, 19 May 2020 11:47:56 +0200 Subject: [PATCH] tests/periph_spi: Fix column alignment --- tests/periph_spi/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/periph_spi/main.c b/tests/periph_spi/main.c index 6fd3f6d23f..acaf8312b7 100644 --- a/tests/periph_spi/main.c +++ b/tests/periph_spi/main.c @@ -395,7 +395,7 @@ int cmd_bench(int argc, char **argv) sched_diff_us = xtimer_usec_from_ticks(xtimer_diff(sched_stop, sched_start)); printf(" 8 - read %i times %i byte:", BENCH_REDOS, BENCH_LARGE); - printf("\t\t\t%"PRIu32"\t%"PRIu32"\n", (stop - start), sched_diff_us); + printf("\t\t%"PRIu32"\t%"PRIu32"\n", (stop - start), sched_diff_us); sum += (stop - start); sched_sum += sched_diff_us; @@ -491,7 +491,7 @@ int cmd_bench(int argc, char **argv) sched_diff_us = xtimer_usec_from_ticks(xtimer_diff(sched_stop, sched_start)); printf("14 - transfer %i times %i byte to register:", BENCH_REDOS, BENCH_LARGE); - printf("\t%"PRIu32"\t%"PRIu32"\n", (stop - start), sched_diff_us); + printf("%"PRIu32"\t%"PRIu32"\n", (stop - start), sched_diff_us); sum += (stop - start); sched_sum += sched_diff_us;