Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-04-18 03:53:15 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2009-04-18 03:53:15 +0400
commit7b9e5c57ae388be642234ee89c75b733711f905d (patch)
tree098660176d7ae4e94c2554017c1ad5e08a5b0c1c /shell
parent3d40d8e65534a7805393c3c9dfadba097f8d07f3 (diff)
builtin_return's parameter is not unused
Diffstat (limited to 'shell')
-rw-r--r--shell/hush.c2
1 files changed, 1 insertions, 1 deletions
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;