commit | a3832d496b2c51e22bd7b4992aa7bfe29f062506 | [log] [tgz] |
---|---|---|
author | Yi-Yo Chiang <yochiang@google.com> | Tue Jul 05 17:55:24 2022 +0800 |
committer | Yi-yo Chiang <yochiang@google.com> | Mon Jul 18 04:38:02 2022 +0000 |
tree | 741009c32fbfe9e4945694889ed061083f891c1b | |
parent | 46fa45d82c91839ad5ff221cb59f984a7913ac79 [diff] |
first_stage_mount: Fix log typo "check_at_most_once" Was "check_most_at_once", should be "check_at_most_once". Also straighten the if-then-else logic from: if (cond) { // then } else { // error... return; } to: if (!cond) { // error... return; } // fallthrough is "then" Test: Presubmit Change-Id: I85c1e94c47a727089374d5d05ecd40f4187b66a1