From: Martin George Date: Wed, 26 Feb 2025 11:41:24 +0000 (+0530) Subject: netapp-smdev: update err msg for no smdevices X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=eeb7d8071c24ca26f8877d46c6dbc4ddf29c2054;p=users%2Fsagi%2Fnvme-cli.git netapp-smdev: update err msg for no smdevices Update the error message when no smdevices are detected on the host. Signed-off-by: Martin George --- diff --git a/plugins/netapp/netapp-nvme.c b/plugins/netapp/netapp-nvme.c index 535aafd4..02c9d2be 100644 --- a/plugins/netapp/netapp-nvme.c +++ b/plugins/netapp/netapp-nvme.c @@ -880,7 +880,7 @@ static int netapp_smdevices(int argc, char **argv, struct command *command, num = scandir(dev_path, &devices, netapp_nvme_filter, alphasort); if (num <= 0) { - fprintf(stderr, "No NVMe devices detected\n"); + fprintf(stderr, "No smdevices detected\n"); return num; }