From 0d30bef0c03dd391923f649acab7c90c0db84cfd Mon Sep 17 00:00:00 2001 From: Tokunori Ikegami Date: Sun, 11 Jan 2026 22:02:56 +0900 Subject: [PATCH] nvme: use to show sanitize ns specific status code string Since the status code is duplicated with the fw-commit status code. Signed-off-by: Tokunori Ikegami --- nvme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvme.c b/nvme.c index 0592088dfa..bb30afab43 100644 --- a/nvme.c +++ b/nvme.c @@ -5646,7 +5646,7 @@ static int sanitize_ns_cmd(int argc, char **argv, struct command *acmd, if (err < 0) nvme_show_error("sanitize ns: %s", nvme_strerror(err)); else if (err > 0) - nvme_show_status(err); + nvme_show_opcode_status(err, true, cmd.opcode); return err; }