summaryrefslogtreecommitdiff
path: root/util/nvmutil
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2026-03-07 00:10:36 +0000
committerLeah Rowe <leah@libreboot.org>2026-03-07 00:10:36 +0000
commit68d689336b1d4ea88e8a0565e010785b56c689bb (patch)
treece611e0c75c4b90004d272c3fd71805d1b2bf3de /util/nvmutil
parent658ed55bc12b9bd52b7982c7004af88afbd1f215 (diff)
util/nvmutil: fix an err string
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'util/nvmutil')
-rw-r--r--util/nvmutil/nvmutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/nvmutil/nvmutil.c b/util/nvmutil/nvmutil.c
index 294f12f3..04d24e7f 100644
--- a/util/nvmutil/nvmutil.c
+++ b/util/nvmutil/nvmutil.c
@@ -288,7 +288,7 @@ conv_argv_part_num(const char *part_str)
*/
if (part_str[0] == '\0' || part_str[1] != '\0')
- err(EINVAL, "Partnum string '%s' wrong length.", part_str);
+ err(EINVAL, "Partnum string '%s' wrong length", part_str);
ch = (unsigned char)part_str[0] - '0';