From 363402af83b92b66df25e11005aa64343e3b7153 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Mon, 13 Feb 2012 08:35:12 -0500 Subject: [PATCH] iterator: fix type warning on 32-bit build Signed-off-by: Mathieu Desnoyers --- lib/iterator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/iterator.c b/lib/iterator.c index 414f559e..47650444 100644 --- a/lib/iterator.c +++ b/lib/iterator.c @@ -225,7 +225,7 @@ struct bt_iter_pos *bt_iter_get_pos(struct bt_iter *iter) pos->u.restore->stream_saved_pos, saved_pos); - printf_debug("stream : %lu, cur_index : %zd, " + printf_debug("stream : %" PRIu64 ", cur_index : %zd, " "offset : %zd, " "timestamp = %" PRIu64 "\n", stream->stream_id, saved_pos.cur_index, -- 2.34.1