The following changes since commit d56036a40edce5619d6e9346b1e9d34822ab1437: LFSR: Do not ignore returning the seed (2013-08-27 10:58:34 -0600) are available in the git repository at: git://git.kernel.dk/fio.git master Jens Axboe (1): client: fix compile warning on platforms where pfds->fd is not an int client.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- Diff of recent changes: diff --git a/client.c b/client.c index 155eb72..b20d6dc 100644 --- a/client.c +++ b/client.c @@ -1462,7 +1462,7 @@ int fio_handle_clients(struct client_ops *ops) client = find_client_by_fd(pfds[i].fd); if (!client) { - log_err("fio: unknown client fd %d\n", pfds[i].fd); + log_err("fio: unknown client fd %ld\n", (long) pfds[i].fd); continue; } if (!fio_handle_client(client)) { -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html