[BusyBox-cvs] CVS update of busybox/shell (ash.c)

Erik Andersen andersen at codepoet.org
Tue Jun 22 19:07:22 UTC 2004


    Date: Tuesday, June 22, 2004 @ 13:07:22
  Author: andersen
    Path: /var/cvs/busybox/shell

Modified: ash.c (1.98 -> 1.99)

Bastian Blank notices a couple of int64_ts that should have
been longs


Index: busybox/shell/ash.c
diff -u busybox/shell/ash.c:1.98 busybox/shell/ash.c:1.99
--- busybox/shell/ash.c:1.98	Tue Jun 22 02:29:45 2004
+++ busybox/shell/ash.c	Tue Jun 22 13:07:21 2004
@@ -13162,9 +13162,8 @@
 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



More information about the busybox-cvs mailing list