aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-04-06 12:28:34 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2009-04-06 12:28:34 +0000
commit5e883fb00d50308779570392b1342ac1b6505f56 (patch)
treed0cc4c1bae72d780eddddf211e0aa99b0be796ae
parentb1d11bf45ec55d469f47c1341d593fdae790bb6a (diff)
downloadbusybox-w32-5e883fb00d50308779570392b1342ac1b6505f56.tar.gz
busybox-w32-5e883fb00d50308779570392b1342ac1b6505f56.tar.bz2
busybox-w32-5e883fb00d50308779570392b1342ac1b6505f56.zip
hush: micro-optimization. -37 bytes
-rw-r--r--shell/hush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c
index e86f0d22f..7e6d3567b 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -1799,7 +1799,7 @@ static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
1799 //bb_error_msg("'%s' -> '%s'", arg, dest.data); 1799 //bb_error_msg("'%s' -> '%s'", arg, dest.data);
1800 exp_str = expand_string_to_string(dest.data); 1800 exp_str = expand_string_to_string(dest.data);
1801 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str); 1801 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
1802 o_free(&dest); 1802 o_free_unsafe(&dest);
1803 } 1803 }
1804 hooks.lookupvar = get_local_var_value; 1804 hooks.lookupvar = get_local_var_value;
1805 hooks.setvar = arith_set_local_var; 1805 hooks.setvar = arith_set_local_var;