From 1bbcd268cd134175a9298e69d7e9ff6b935fcb0f Mon Sep 17 00:00:00 2001 From: --global Date: Fri, 2 May 2014 16:28:47 +0200 Subject: [PATCH] fix re-added removed printf formatter --- tests/test_pthread_barrier/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_pthread_barrier/main.c b/tests/test_pthread_barrier/main.c index 3fca62da5a..792a9da825 100644 --- a/tests/test_pthread_barrier/main.c +++ b/tests/test_pthread_barrier/main.c @@ -43,7 +43,7 @@ static void *run(void *id_) pthread_barrier_wait(&barrier); uint32_t timeout_us = genrand_uint32() % 2500000; - printf("Child %i sleeps for %" PRIu32 " µs.\n", id, timeout_us); + printf("Child %i sleeps for % 8" PRIu32 " µs.\n", id, timeout_us); vtimer_usleep(timeout_us); }