util/nvmutil: use bsd-style indentation
the style was already quite similar, but extended lines in bsd are indented by 4 spaces instead of a tab. this style has grown on me, so i'm adopting it here Signed-off-by: Leah Rowe <leah@libreboot.org>fsdg20230625
parent
18f39ab6fa
commit
9aa34f1e20
|
@ -40,9 +40,10 @@ main(int argc, char *argv[])
|
||||||
|
|
||||||
err_if((errno = ((strMac == NULL) && (cmd == NULL)) ? EINVAL : errno));
|
err_if((errno = ((strMac == NULL) && (cmd == NULL)) ? EINVAL : errno));
|
||||||
|
|
||||||
skipread[part ^ 1] = (cmd == &cmd_copy) |
|
skipread[part ^ 1] = (cmd == &cmd_copy) | (cmd == &cmd_setchecksum)
|
||||||
(cmd == &cmd_setchecksum) | (cmd == &cmd_brick);
|
| (cmd == &cmd_brick);
|
||||||
readGbeFile(FILENAME, flags);
|
readGbeFile(FILENAME, flags);
|
||||||
|
|
||||||
(void)rhex();
|
(void)rhex();
|
||||||
xunveil("/dev/urandom", "r");
|
xunveil("/dev/urandom", "r");
|
||||||
if (flags == O_RDONLY) {
|
if (flags == O_RDONLY) {
|
||||||
|
|
Loading…
Reference in New Issue