Merge pull request #8877 from bergzand/pr/tests/pthread_barrier_utf8

tests/pthread_barrier: Convert UTF-8 to ASCII in printf statement
This commit is contained in:
Kaspar Schleiser 2018-04-04 14:29:32 +02:00 committed by GitHub
commit 043a6826a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}