1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tests/pthread_barrier: Convert UTF-8 to ASCII

This commit is contained in:
Koen Zandberg 2018-04-04 13:53:41 +02:00
parent 2a594b644b
commit 4177e54723
No known key found for this signature in database
GPG Key ID: BA1718B37D79F51C

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