From: Denis Vlasenko Date: Fri, 17 Apr 2009 23:53:15 +0000 (-0000) Subject: builtin_return's parameter is not unused X-Git-Tag: 1_15_0~324 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7b9e5c57ae388be642234ee89c75b733711f905d;p=oweals%2Fbusybox.git builtin_return's parameter is not unused --- diff --git a/shell/hush.c b/shell/hush.c index 82634ff83..f9757a723 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -6904,7 +6904,7 @@ static int builtin_continue(char **argv) #endif #if ENABLE_HUSH_FUNCTIONS -static int builtin_return(char **argv UNUSED_PARAM) +static int builtin_return(char **argv) { int rc;