From 7b9e5c57ae388be642234ee89c75b733711f905d Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Fri, 17 Apr 2009 23:53:15 +0000 Subject: builtin_return's parameter is not unused --- shell/hush.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell') 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; -- cgit v1.2.3