diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-03-03 14:15:36 +0000 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-03-03 14:15:36 +0000 |
| commit | 65a2f352eeefcdcebb758e31bbd4ef3c9692b519 (patch) | |
| tree | 79a6f0c9e6c34630e1aa073ced51d714594c34d1 | |
| parent | b8091c7bdccb258c2e76d01b73108cebc575a689 (diff) | |
util/nvmutil: obey the 79-character rule
only 79 characters or less, per line.
Signed-off-by: Leah Rowe <leah@libreboot.org>
| -rw-r--r-- | util/nvmutil/nvmutil.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/util/nvmutil/nvmutil.c b/util/nvmutil/nvmutil.c index 1ce9042f..83ac6c83 100644 --- a/util/nvmutil/nvmutil.c +++ b/util/nvmutil/nvmutil.c @@ -186,7 +186,8 @@ read_gbe(void) { int do_read[2] = {1, 1}; - if ((cmd == cmd_copy) || (cmd == cmd_brick) || (cmd == cmd_setchecksum)) + if ((cmd == cmd_copy) || (cmd == cmd_brick) || + (cmd == cmd_setchecksum)) do_read[part ^ 1] = 0; /* @@ -411,7 +412,8 @@ good_checksum(int partnum) if (total == NVM_CHECKSUM) return 1; - fprintf(stderr, "WARNING: BAD checksum in part %d\n", partnum ^ invert); + fprintf(stderr, "WARNING: BAD checksum in part %d\n", + partnum ^ invert); (void) set_err(ECANCELED); return 0; } |
