util/nvmutil: properly cast void use of set_err

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2026-03-03 03:35:37 +00:00
parent 7213bba0c5
commit c98d5c743f
+1 -1
View File
@@ -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;
}