From 76ace254e171ee9ca7a13f36335ccad9cc6ae6e1 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 12 Oct 2009 15:25:01 +0200 Subject: ash,hush: fix $RANDOM in children being repeated function old new delta next_random 46 68 +22 forkshell 248 263 +15 expand_vars_to_list 2118 2131 +13 run_pipe 1775 1782 +7 popstring 134 140 +6 builtin_umask 123 121 -2 ash_main 1356 1336 -20 get_local_var_value 125 104 -21 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 5/3 up/down: 63/-43) Total: 20 bytes Signed-off-by: Denys Vlasenko --- shell/math.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell/math.c') diff --git a/shell/math.c b/shell/math.c index 3791b84bc..fc20def62 100644 --- a/shell/math.c +++ b/shell/math.c @@ -258,7 +258,7 @@ static int arith_lookup_val(v_n_t *t, a_e_h_t *math_hooks) { if (t->var) { - const char * p = lookupvar(t->var); + const char *p = lookupvar(t->var); if (p) { int errcode; -- cgit v1.2.3