From 4cec12f208857c49cfee0a1399f2766bb45bdfb2 Mon Sep 17 00:00:00 2001 From: Arshad Hussain Date: Sun, 20 Jan 2019 01:24:23 +0530 Subject: [PATCH] lib: Fix spelling error in vhost_nvme.c This patch fixes spelling error while printing error message using SPDK_ERRLOG under file lib/vhost/vhost_nvme.c Signed-off-by: Arshad Hussain Change-Id: I295c603d5e07935b200669f3c870c6e7d1136936 Reviewed-on: https://review.gerrithub.io/c/441255 Reviewed-by: Shuhei Matsumoto Reviewed-by: Changpeng Liu Tested-by: SPDK CI Jenkins --- lib/vhost/vhost_nvme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vhost/vhost_nvme.c b/lib/vhost/vhost_nvme.c index d796cdfce..09c1c7f17 100644 --- a/lib/vhost/vhost_nvme.c +++ b/lib/vhost/vhost_nvme.c @@ -983,7 +983,7 @@ spdk_vhost_nvme_admin_passthrough(int vid, void *cmd, void *cqe, void *buf) } if (ret) { - SPDK_ERRLOG("Admin Passthrough Faild with %u\n", req->opc); + SPDK_ERRLOG("Admin Passthrough Failed with %u\n", req->opc); } return 0;