From dc2c1fa5af19caf53e26dc72e0afadcb745aacfd Mon Sep 17 00:00:00 2001 From: Tokunori Ikegami Date: Wed, 12 Feb 2025 00:17:42 +0900 Subject: [PATCH] nvme: fix reachability-groups-log command perror message Since copied the command implementation but missed to change. Signed-off-by: Tokunori Ikegami --- nvme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvme.c b/nvme.c index 6e8ba0f8..7e894704 100644 --- a/nvme.c +++ b/nvme.c @@ -10317,7 +10317,7 @@ static int get_reachability_groups_log(int argc, char **argv, struct command *cm else if (err > 0) nvme_show_status(err); else - nvme_show_perror("rotational media info log"); + nvme_show_perror("reachability groups log"); return err; } -- 2.50.1