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

Merge pull request #1096 from BytesGalore/fix_removed_formatter

test:test_pthread_barrier re-added removed printf formatter
This commit is contained in:
René Kijewski 2014-05-02 16:47:58 +02:00
commit 1c52f95488

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