From 49d14c0f6ff863508e0aadff3599d040f45626dd Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Sat, 1 Oct 2011 00:08:39 -0600 Subject: [PATCH] client: fix error in logging output Signed-off-by: Jens Axboe --- client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.c b/client.c index f9154648..dfc172ea 100644 --- a/client.c +++ b/client.c @@ -133,7 +133,7 @@ int fio_handle_clients(void) free(cmd); continue; } - printf("%s", cmd->payload); + fwrite(cmd->payload, cmd->pdu_len, 1, stdout); fflush(stdout); free(cmd); } -- 2.25.1