diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-03-03 03:35:37 +0000 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-03-03 03:35:37 +0000 |
| commit | c98d5c743fc1beb62db7f826bf1b2dbe1db6e2d0 (patch) | |
| tree | b237c1023777e26589b8ae59cec6db1325d4eef2 /util/nvmutil/nvmutil.c | |
| parent | 7213bba0c57d550676bb3adf56884c6bc60285da (diff) | |
util/nvmutil: properly cast void use of set_err
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'util/nvmutil/nvmutil.c')
| -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 8d5b707c..256c3b88 100644 --- a/util/nvmutil/nvmutil.c +++ b/util/nvmutil/nvmutil.c @@ -400,7 +400,7 @@ goodChecksum(int partnum) return 1; fprintf(stderr, "WARNING: BAD checksum in part %d\n", partnum); - set_err(ECANCELED); + (void) set_err(ECANCELED); return 0; } |
