From: Jens Axboe Date: Wed, 26 Apr 2006 13:05:17 +0000 (+0200) Subject: [PATCH] splice-bench: compile warning X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=05818210f891f745248b1b6fe87f80edfd0a663b;p=splice.git [PATCH] splice-bench: compile warning --- diff --git a/splice-bench.c b/splice-bench.c index 97a5509..268d65a 100644 --- a/splice-bench.c +++ b/splice-bench.c @@ -234,7 +234,7 @@ again: size = sb.st_size >> 10; size *= client_loops; msecs = mtime_since_now(&start); - fprintf(stdout, "Client%d: %lu MiB/sec\n", offset, size / msecs); + fprintf(stdout, "Client%d: %Lu MiB/sec\n", offset, size / msecs); return 0; }