>From 473842b2c1181245d3bfd1c5cfc6dbad1b695f79 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 15 Apr 2013 13:12:44 +0400 Subject: [PATCH] fio: fix segfault on 32bits platforms --- stat.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/stat.c b/stat.c index 2665952..f3bc63d 100644 --- a/stat.c +++ b/stat.c @@ -601,7 +601,7 @@ void show_thread_status(struct thread_stat *ts, struct group_run_stats *rs) ts->short_io_u[0], ts->short_io_u[1], ts->short_io_u[2]); if (ts->continue_on_error) { - log_info(" errors : total=%lu, first_error=%d/<%s>\n", + log_info(" errors : total=%llu, first_error=%d/<%s>\n", ts->total_err_count, ts->first_error, strerror(ts->first_error)); -- 1.7.1