diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-03-07 02:38:36 +0000 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-03-07 02:38:36 +0000 |
| commit | 49eca198dae3af495890667ad33a676157d0db2f (patch) | |
| tree | 33e9c9a967020fdbde6ac5c2c9154f74fc932ecd | |
| parent | ef2937edbd84d7efe7320bb160ca91973ba11f57 (diff) | |
util/nvmutil: make mac_updated a uint8_t
Signed-off-by: Leah Rowe <leah@libreboot.org>
| -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 db13c672..c609ca36 100644 --- a/util/nvmutil/nvmutil.c +++ b/util/nvmutil/nvmutil.c @@ -462,7 +462,7 @@ static void cmd_setmac(void) { size_t partnum; - unsigned char mac_updated = 0; + uint8_t mac_updated = 0; parse_mac_string(); printf("MAC address to be written: %s\n", mac_str); |
