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

fix re-added removed printf formatter

This commit is contained in:
--global 2014-05-02 16:28:47 +02:00
parent 668800eea7
commit 1bbcd268cd

View File

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