diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-03-07 00:10:36 +0000 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-03-07 00:10:36 +0000 |
| commit | 68d689336b1d4ea88e8a0565e010785b56c689bb (patch) | |
| tree | ce611e0c75c4b90004d272c3fd71805d1b2bf3de /util | |
| parent | 658ed55bc12b9bd52b7982c7004af88afbd1f215 (diff) | |
util/nvmutil: fix an err string
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'util')
| -rw-r--r-- | util/nvmutil/nvmutil.c | 2 |
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'; |
