mirror of
https://github.com/gosticks/RIOT.git
synced 2025-10-16 12:05:37 +00:00
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:
commit
043a6826a3
@ -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);
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user