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 840a0da..1d1e6d1 100644 --- a/coreutils/test.c +++ b/coreutils/test.c @@ -859,7 +859,7 @@ static number_t primary(enum token n) if (check_operator(args[1]) != EOI) { /* if args[1] != NULL */ if (args[2]) { // coreutils also does this: - // if (args[3] && args[0]="-l" && args[2] is BINOP) + // if (args[3] && args[0] = "-l" && args[2] is BINOP) // return binop(1 /* prepended by -l */); if (last_operator->op_type == BINOP) unnest_msg_and_return(binop(), "<primary: binop:%lld\n"); |