diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2004-06-22 19:07:21 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2004-06-22 19:07:21 +0000 |
commit | 7df477d5825777b02ed425fa170debe58920b7b3 (patch) | |
tree | 4b27a0ee68a6843f85748f25111c2ba525420b0b /shell | |
parent | e2ed339565d65095b11c023e508958e216745408 (diff) | |
download | busybox-w32-7df477d5825777b02ed425fa170debe58920b7b3.tar.gz busybox-w32-7df477d5825777b02ed425fa170debe58920b7b3.tar.bz2 busybox-w32-7df477d5825777b02ed425fa170debe58920b7b3.zip |
Bastian Blank notices a couple of int64_ts that should have
been longs
git-svn-id: svn://busybox.net/trunk/busybox@8919 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c index a1c4f346b..2862f1032 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -13162,9 +13162,8 @@ static int arith_lookup_val(v_n_t *t) | |||
13162 | static inline int | 13162 | static inline int |
13163 | arith_apply(operator op, v_n_t *numstack, v_n_t **numstackptr) | 13163 | arith_apply(operator op, v_n_t *numstack, v_n_t **numstackptr) |
13164 | { | 13164 | { |
13165 | int64_t numptr_val; | ||
13166 | v_n_t *numptr_m1; | 13165 | v_n_t *numptr_m1; |
13167 | int64_t rez; | 13166 | arith_t numptr_val, rez |
13168 | int ret_arith_lookup_val; | 13167 | int ret_arith_lookup_val; |
13169 | 13168 | ||
13170 | if (NUMPTR == numstack) goto err; /* There is no operator that can work | 13169 | if (NUMPTR == numstack) goto err; /* There is no operator that can work |