From: Tokunori Ikegami Date: Tue, 11 Feb 2025 15:17:42 +0000 (+0900) Subject: nvme: fix reachability-groups-log command perror message X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=dc2c1fa5af19caf53e26dc72e0afadcb745aacfd;p=users%2Fsagi%2Fnvme-cli.git nvme: fix reachability-groups-log command perror message Since copied the command implementation but missed to change. Signed-off-by: Tokunori Ikegami --- 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; }