diff options
Diffstat (limited to 'coreutils/test.c')
-rw-r--r-- | coreutils/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/test.c b/coreutils/test.c index 840a0daaf..1d1e6d18b 100644 --- a/coreutils/test.c +++ b/coreutils/test.c | |||
@@ -859,7 +859,7 @@ static number_t primary(enum token n) | |||
859 | if (check_operator(args[1]) != EOI) { /* if args[1] != NULL */ | 859 | if (check_operator(args[1]) != EOI) { /* if args[1] != NULL */ |
860 | if (args[2]) { | 860 | if (args[2]) { |
861 | // coreutils also does this: | 861 | // coreutils also does this: |
862 | // if (args[3] && args[0]="-l" && args[2] is BINOP) | 862 | // if (args[3] && args[0] = "-l" && args[2] is BINOP) |
863 | // return binop(1 /* prepended by -l */); | 863 | // return binop(1 /* prepended by -l */); |
864 | if (last_operator->op_type == BINOP) | 864 | if (last_operator->op_type == BINOP) |
865 | unnest_msg_and_return(binop(), "<primary: binop:%lld\n"); | 865 | unnest_msg_and_return(binop(), "<primary: binop:%lld\n"); |