summaryrefslogtreecommitdiff
path: root/ioshark/ioshark_bench_subr.c
diff options
context:
space:
mode:
Diffstat (limited to 'ioshark/ioshark_bench_subr.c')
-rw-r--r--ioshark/ioshark_bench_subr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ioshark/ioshark_bench_subr.c b/ioshark/ioshark_bench_subr.c
index ff273cce..2056d448 100644
--- a/ioshark/ioshark_bench_subr.c
+++ b/ioshark/ioshark_bench_subr.c
@@ -308,8 +308,8 @@ print_op_stats(u_int64_t *op_counts)
printf("IO Operation counts :\n");
for (i = IOSHARK_LSEEK ; i < IOSHARK_MAX_FILE_OP ; i++) {
- printf("%s: %lu\n",
- IO_op[i], op_counts[i]);
+ printf("%s: %llu\n",
+ IO_op[i], (unsigned long long)op_counts[i]);
}
}