diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2022-08-30 16:41:17 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2022-08-30 16:41:17 +0200 |
commit | fe73c8d55795a8fe7e95fc2c00af6899817b96b8 (patch) | |
tree | 1b772243f00c63d16ee4cf8bf6f80a6c7a53ee91 /coreutils/test.c | |
parent | 58598eb7093561d914a6254697e137b815f1fdfc (diff) | |
download | busybox-w32-fe73c8d55795a8fe7e95fc2c00af6899817b96b8.tar.gz busybox-w32-fe73c8d55795a8fe7e95fc2c00af6899817b96b8.tar.bz2 busybox-w32-fe73c8d55795a8fe7e95fc2c00af6899817b96b8.zip |
*: style fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
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"); |