From f6775bc67b82814f53c78f1d2f4285fb3a35137b Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Fri, 16 Jun 2017 22:13:37 -0400 Subject: [PATCH] tests: timer_monotonic: fix style Signed-off-by: Anas Nashif --- tests/kernel/timer/timer_monotonic/src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/kernel/timer/timer_monotonic/src/main.c b/tests/kernel/timer/timer_monotonic/src/main.c index 5169903ecca..2ff2f5a4824 100644 --- a/tests/kernel/timer/timer_monotonic/src/main.c +++ b/tests/kernel/timer/timer_monotonic/src/main.c @@ -58,8 +58,8 @@ void main(void) if (t_now < t_last) { diff = t_now - t_last; TC_PRINT("diff = %" PRId32 " (t_last = %" PRIu32 - " : t_now = %" PRIu32 "); i = %u\n", - diff, t_last, t_now, i); + " : t_now = %" PRIu32 "); i = %u\n", + diff, t_last, t_now, i); errors++; } t_last = t_now;