mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
post: remove redundant condition
(A && A == 0x20) is only true for (A == 0x20). Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
001ab99325
commit
86eeac7bcf
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ static void post_get_env_flags(int *test_flags)
|
||||||
last = 0;
|
last = 0;
|
||||||
name = list;
|
name = list;
|
||||||
while (!last) {
|
while (!last) {
|
||||||
while (*name && *name == ' ')
|
while (*name == ' ')
|
||||||
name++;
|
name++;
|
||||||
if (*name == 0)
|
if (*name == 0)
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue