diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-03-07 01:11:07 +0000 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-03-07 01:11:07 +0000 |
| commit | c02f3166bbaaad5692426171bc0d84e9e98c8f41 (patch) | |
| tree | 868a1e82237943b583af4ac722e696a5ac901240 /util | |
| parent | a9f5cbb5421adb95c2cf96afe66b15c9c5aea589 (diff) | |
util/nvmutil: make do_read a uint8_t
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 86808164..82a73ef4 100644 --- a/util/nvmutil/nvmutil.c +++ b/util/nvmutil/nvmutil.c @@ -404,7 +404,7 @@ static void read_gbe_file(void) { size_t p; - unsigned char do_read[2] = {1, 1}; + uint8_t do_read[2] = {1, 1}; /* * The copy, brick and setchecksum commands need |
