git: a2754976efe2 - stable/14 - nvmecontrol(8): Fix a typo in an error message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 19 Nov 2025 10:09:50 UTC
The branch stable/14 has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=a2754976efe2f8989dd056f6126020a4bbfc4e32
commit a2754976efe2f8989dd056f6126020a4bbfc4e32
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2025-10-26 15:08:31 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2025-11-19 10:09:37 +0000
nvmecontrol(8): Fix a typo in an error message
- s/speciifed/specified/
(cherry picked from commit 44004bcffabc3372d6812c2e0c4bf90386919e21)
---
sbin/nvmecontrol/perftest.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sbin/nvmecontrol/perftest.c b/sbin/nvmecontrol/perftest.c
index 0afab9951e50..c98e0fbab8e4 100644
--- a/sbin/nvmecontrol/perftest.c
+++ b/sbin/nvmecontrol/perftest.c
@@ -172,7 +172,7 @@ perftest(const struct cmd *f, int argc, char *argv[])
arg_help(argc, argv, f);
}
if (opt.time == 0) {
- fprintf(stderr, "No time speciifed\n");
+ fprintf(stderr, "No time specified\n");
arg_help(argc, argv, f);
}
io_test.time = opt.time;