diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-03-06 19:28:32 +0000 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-03-06 19:28:32 +0000 |
| commit | 5d05921875f7f17d271f4c691dfbf1787e166b8c (patch) | |
| tree | e1ff328a2babba8abf6f646d0c1d31e78aed4187 /util/nvmutil | |
| parent | 1aa8f33d50666cc6ae3ddaef8636a384345f8101 (diff) | |
util/nvmutil: make part_modified an unsigned char
better reflects intent
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'util/nvmutil')
| -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 2dee5c75..62986a9c 100644 --- a/util/nvmutil/nvmutil.c +++ b/util/nvmutil/nvmutil.c @@ -124,7 +124,7 @@ static int fd = -1; static struct stat st; static size_t part; static int invert; -static int part_modified[2]; +static unsigned char part_modified[2]; static const char *mac = NULL; static const char rmac[] = "xx:xx:xx:xx:xx:xx"; |
