diff options
author | Denis Vlasenko | 2007-06-25 10:55:35 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-06-25 10:55:35 +0000 |
commit | 80b8b39899a09c7516920cda5fd343b3086d4824 (patch) | |
tree | aa9903fd6b64d19c5f640fa302272d85c92b204e /coreutils/test.c | |
parent | 1399282b47bb218132a554cbe5b2b0ce4dcc055f (diff) | |
download | busybox-80b8b39899a09c7516920cda5fd343b3086d4824.zip busybox-80b8b39899a09c7516920cda5fd343b3086d4824.tar.gz |
Consolidate ARRAY_SIZE macro; remove one unneeded global var (walter harms <wharms@bfs.de>)
Diffstat (limited to 'coreutils/test.c')
-rw-r--r-- | coreutils/test.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/coreutils/test.c b/coreutils/test.c index 36fb38a..7b87a42 100644 --- a/coreutils/test.c +++ b/coreutils/test.c @@ -146,7 +146,6 @@ static const struct t_op { { ")" , RPAREN , PAREN }, }; -enum { NUM_OPS = sizeof(ops) / sizeof(ops[0]) }; #if ENABLE_FEATURE_TEST_64 typedef int64_t arith_t; @@ -471,7 +470,7 @@ static enum token t_lex(char *s) return op->op_num; } op++; - } while (op < ops + NUM_OPS); + } while (op < ops + ARRAY_SIZE(ops)); return OPERAND; } |