From 6abc7a36823e687bfc88f5235419b9c5184e50d4 Mon Sep 17 00:00:00 2001 From: "Friendy.Su@sony.com" Date: Wed, 3 Mar 2021 06:27:27 +0000 Subject: [PATCH] engines/filecreate: remove improper message print 'fallocate' should not be printed in filecreate engine Signed-off-by: friendy-su Signed-off-by: Jens Axboe --- engines/filecreate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/filecreate.c b/engines/filecreate.c index 5fec8544..16c64928 100644 --- a/engines/filecreate.c +++ b/engines/filecreate.c @@ -22,7 +22,7 @@ static int open_file(struct thread_data *td, struct fio_file *f) dprint(FD_FILE, "fd open %s\n", f->file_name); if (f->filetype != FIO_TYPE_FILE) { - log_err("fio: only files are supported fallocate \n"); + log_err("fio: only files are supported\n"); return 1; } if (!strcmp(f->file_name, "-")) { -- 2.25.1