From 5597e835c8981d6500d00c0f88fd10edae173621 Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Tue, 23 May 2017 12:51:03 -0700 Subject: [PATCH] nvme/fio_plugin: fix typo in traddr error message Change-Id: I9ee1c2ab49691f7e31bbec83a057faa718177c90 Signed-off-by: Daniel Verkamp Reviewed-on: https://review.gerrithub.io/362260 Tested-by: SPDK Automated Test System Reviewed-by: Ben Walker Reviewed-by: GangCao Reviewed-by: Jim Harris --- examples/nvme/fio_plugin/fio_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/nvme/fio_plugin/fio_plugin.c b/examples/nvme/fio_plugin/fio_plugin.c index bc1119161..96f571e7a 100644 --- a/examples/nvme/fio_plugin/fio_plugin.c +++ b/examples/nvme/fio_plugin/fio_plugin.c @@ -265,7 +265,7 @@ static int spdk_fio_setup(struct thread_data *td) if (trid.trtype == SPDK_NVME_TRANSPORT_PCIE) { struct spdk_pci_addr pci_addr; if (spdk_pci_addr_parse(&pci_addr, trid.traddr) < 0) { - SPDK_ERRLOG("Invaild traddr=%s\n", trid.traddr); + SPDK_ERRLOG("Invalid traddr=%s\n", trid.traddr); continue; } spdk_pci_addr_fmt(trid.traddr, sizeof(trid.traddr), &pci_addr);