mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-03-25 13:29:03 +02:00
util/nvmutil: fix typo in unveil call
Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
@@ -242,8 +242,8 @@ main(int argc, char *argv[])
|
||||
err(errno, "%s: unveil rw", f->tname);
|
||||
}
|
||||
|
||||
if (unveil(tname, "rwc") == -1)
|
||||
err(errno, "%s: unveil rwc", tname);
|
||||
if (unveil(f->tname, "rwc") == -1)
|
||||
err(errno, "%s: unveil rwc", f->tname);
|
||||
|
||||
if (unveil(NULL, NULL) == -1)
|
||||
err(errno, "unveil block (rw)");
|
||||
|
||||
Reference in New Issue
Block a user