From 4177e54723669da70bc88b2916c75fb1b45f5bdc Mon Sep 17 00:00:00 2001 From: Koen Zandberg Date: Wed, 4 Apr 2018 13:53:41 +0200 Subject: [PATCH] tests/pthread_barrier: Convert UTF-8 to ASCII --- tests/pthread_barrier/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pthread_barrier/main.c b/tests/pthread_barrier/main.c index 83c6e47d9c..b7b6881088 100644 --- a/tests/pthread_barrier/main.c +++ b/tests/pthread_barrier/main.c @@ -44,7 +44,7 @@ static void *run(void *id_) pthread_barrier_wait(&barrier); uint32_t timeout_us = random_uint32() % 2500000; - printf("Child %i sleeps for %8" PRIu32 " µs.\n", id, timeout_us); + printf("Child %i sleeps for %8" PRIu32 " us.\n", id, timeout_us); xtimer_usleep(timeout_us); }