diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-03-08 23:06:01 +0000 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-03-08 23:06:01 +0000 |
| commit | 70da9c3940603316927aa8afa28816b534dcaa7a (patch) | |
| tree | b564dbf8b471e1ccf4fda0bde3e8ab6487188b04 /util/nvmutil | |
| parent | 4d6732dadea756d40bce08253a3fb7dd38798b64 (diff) | |
util/nvmutil: better error message for bin check
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'util/nvmutil')
| -rw-r--r-- | util/nvmutil/nvmutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/nvmutil/nvmutil.c b/util/nvmutil/nvmutil.c index eafe527c..ed88079e 100644 --- a/util/nvmutil/nvmutil.c +++ b/util/nvmutil/nvmutil.c @@ -1127,7 +1127,7 @@ static void check_bin(size_t a, const char *a_name) { if (a > 1) - err(ECANCELED, "%s above 1", a_name); + err(ECANCELED, "%s must be 0 or 1, but is %zu", a_name, a); } static void |
