diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-06-22 19:07:21 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-06-22 19:07:21 +0000 |
commit | e983584c702c88f5f7a3d3ae88ebc3fc37122085 (patch) | |
tree | 4b27a0ee68a6843f85748f25111c2ba525420b0b /shell/ash.c | |
parent | bb692cdb32bcaf696119aa418ea98fc253bbc002 (diff) |
Bastian Blank notices a couple of int64_ts that should have
been longs
Diffstat (limited to 'shell/ash.c')
-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) static inline int arith_apply(operator op, v_n_t *numstack, v_n_t **numstackptr) { - int64_t numptr_val; v_n_t *numptr_m1; - int64_t rez; + arith_t numptr_val, rez int ret_arith_lookup_val; if (NUMPTR == numstack) goto err; /* There is no operator that can work |