Message ID | 20200506000627.67886-1-xypron.glpk@gmx.de |
---|---|
State | Accepted |
Commit | 9900e4623a9a826447b0467cabc29e09fdf29fb6 |
Headers | show |
Series | [1/1] efi_loader: use logical and in do_env_print_efi() | expand |
diff --git a/cmd/nvedit_efi.c b/cmd/nvedit_efi.c index 837e39e021..6f69a84fea 100644 --- a/cmd/nvedit_efi.c +++ b/cmd/nvedit_efi.c @@ -298,7 +298,7 @@ int do_env_print_efi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) return CMD_RET_USAGE; /* -a already specified */ - if (!default_guid & guid_any) + if (!default_guid && guid_any) return CMD_RET_USAGE; argc--;
If we want to check if two booleans are true, we should use a logical conjunction (&&) and not a bitwise and-operator (&). Signed-off-by: Heinrich Schuchardt <xypron.glpk at gmx.de> --- cmd/nvedit_efi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.26.2