src/pi_tests/pi_stress.c: In function 'low_priority': src/pi_tests/pi_stress.c:712:12: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=] pi_debug("low_priority[%d]: entering start wait (%d)\n", p->id, ^ src/pi_tests/pi_stress.c: In function 'med_priority': src/pi_tests/pi_stress.c:840:12: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=] pi_debug("med_priority[%d]: entering start state (%d)\n", p->id, ^ src/pi_tests/pi_stress.c: In function 'high_priority': src/pi_tests/pi_stress.c:964:12: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=] pi_debug("high_priority[%d]: entering start state (%d)\n", p->id, ^ Signed-off-by: Tommi Rantala <tommi.t.rantala@xxxxxxxxx> --- src/pi_tests/pi_stress.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pi_tests/pi_stress.c b/src/pi_tests/pi_stress.c index 116869a..8972122 100644 --- a/src/pi_tests/pi_stress.c +++ b/src/pi_tests/pi_stress.c @@ -709,7 +709,7 @@ void *low_priority(void *arg) } /* initial state */ - pi_debug("low_priority[%d]: entering start wait (%d)\n", p->id, + pi_debug("low_priority[%d]: entering start wait (%lu)\n", p->id, count++); status = pthread_barrier_wait(&p->start_barrier); if (status && status != PTHREAD_BARRIER_SERIAL_THREAD) { @@ -837,7 +837,7 @@ void *med_priority(void *arg) } /* start state */ - pi_debug("med_priority[%d]: entering start state (%d)\n", p->id, + pi_debug("med_priority[%d]: entering start state (%lu)\n", p->id, count++); status = pthread_barrier_wait(&p->start_barrier); if (status && status != PTHREAD_BARRIER_SERIAL_THREAD) { @@ -961,7 +961,7 @@ void *high_priority(void *arg) } pthread_mutex_unlock(&shutdown_mtx); } - pi_debug("high_priority[%d]: entering start state (%d)\n", p->id, + pi_debug("high_priority[%d]: entering start state (%lu)\n", p->id, count++); status = pthread_barrier_wait(&p->start_barrier); if (status && status != PTHREAD_BARRIER_SERIAL_THREAD) { -- 2.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html