Prev: [PATCH 2/3] trace-cmd: fix printf compile warnings
Next: bitops: rename for_each_bit to for_each_set_bit
From: Darren Hart on 1 Feb 2010 12:00 Signed-off-by: Darren Hart <dvhltc(a)us.ibm.com> --- trace-graph.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/trace-graph.c b/trace-graph.c index 135e516..1759163 100644 --- a/trace-graph.c +++ b/trace-graph.c @@ -886,13 +886,13 @@ static void draw_cpu_info(struct graph_info *ginfo, gint cpu, gint x, gint y) trace_seq_init(&s); - dprintf(3, "start=%zu end=%zu time=%lu\n", ginfo->start_time, ginfo->end_time, time); + dprintf(3, "start=%llu end=%llu time=%llu\n", ginfo->start_time, ginfo->end_time, time); record = find_record_on_cpu(ginfo, cpu, time); if (record) { - dprintf(3, "record->ts=%llu time=%zu-%zu\n", + dprintf(3, "record->ts=%llu time=%llu-%llu\n", record->ts, time, time-(gint)(1/ginfo->resolution)); print_rec_info(record, pevent, cpu); -- 1.6.3.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |