diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/command.c b/common/command.c index 64e56af131..2b4c5547b3 100644 --- a/common/command.c +++ b/common/command.c @@ -136,9 +136,9 @@ do_test (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) if (adv == 2) { if (strcmp(ap[0], "-z") == 0) - expr = strlen(ap[1]) == 0 ? 0 : 1; - else if (strcmp(ap[0], "-n") == 0) expr = strlen(ap[1]) == 0 ? 1 : 0; + else if (strcmp(ap[0], "-n") == 0) + expr = strlen(ap[1]) == 0 ? 0 : 1; else { expr = 1; break; |