util/nvmutil: fix an err string

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2026-03-07 00:10:36 +00:00
parent 658ed55bc1
commit 68d689336b
+1 -1
View File
@@ -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';