summaryrefslogtreecommitdiff
path: root/util/nvmutil/nvmutil.c
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2026-03-07 00:03:10 +0000
committerLeah Rowe <leah@libreboot.org>2026-03-07 00:03:10 +0000
commit58182b48c3356d8b8325c22bce0063445193babd (patch)
tree1b2575a83d2ca3c4ff59513eeac78017bef925e5 /util/nvmutil/nvmutil.c
parent884a6779f9b120dbe9964df30fa3ffd185ca93b7 (diff)
util/nvmutil: fix a bad comment
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'util/nvmutil/nvmutil.c')
-rw-r--r--util/nvmutil/nvmutil.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/util/nvmutil/nvmutil.c b/util/nvmutil/nvmutil.c
index d439684b..621541f3 100644
--- a/util/nvmutil/nvmutil.c
+++ b/util/nvmutil/nvmutil.c
@@ -286,13 +286,8 @@ conv_argv_part_num(const char *part_str)
unsigned char ch;
/*
- * Because char signedness is implementation is
- * implementation-defined, we must assumed that
- * it is signed, and guard accordingly.
- *
- * Do not use check_part_num() here. The same check
- * is done *here*, but on a character, with the
- * above caveat in mind.
+ * Because char signedness is implementation-defined,
+ * it is assumed to be signed, and handled accordingly.
*/
if (strlen(part_str) != 1)