From: Denys Vlasenko Date: Mon, 19 Oct 2009 11:24:07 +0000 (+0200) Subject: hush: remove superfluous assignment X-Git-Tag: 1_16_0~365 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3b3ccdc5bc530e824a55ebc8d57c34f0ca6a30c9;p=oweals%2Fbusybox.git hush: remove superfluous assignment Signed-off-by: Denys Vlasenko --- diff --git a/shell/hush.c b/shell/hush.c index cbb0ce69c..69a86b14c 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -6986,7 +6986,7 @@ static int FAST_FUNC builtin_cd(char **argv) static int FAST_FUNC builtin_exec(char **argv) { static const char pseudo_null_str[] = { SPECIAL_VAR_SYMBOL, SPECIAL_VAR_SYMBOL, '\0' }; - char **pp = argv; + char **pp; #if !BB_MMU nommu_save_t dummy; #endif