From: Martin George Date: Wed, 26 Feb 2025 11:36:00 +0000 (+0530) Subject: netapp-ontapdev: update err msg for no ontapdevices X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=2774fb8afe002adc572fb8b6d9830fbe3baac94b;p=users%2Fsagi%2Fnvme-cli.git netapp-ontapdev: update err msg for no ontapdevices Update the error message when no ontapdevices 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 d7dc7583..535aafd4 100644 --- a/plugins/netapp/netapp-nvme.c +++ b/plugins/netapp/netapp-nvme.c @@ -990,7 +990,7 @@ static int netapp_ontapdevices(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 ontapdevices detected\n"); return num; }