summaryrefslogtreecommitdiff
path: root/coreutils/echo.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/echo.c')
-rw-r--r--coreutils/echo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/echo.c b/coreutils/echo.c
index 99063ae52..0c8eac3bc 100644
--- a/coreutils/echo.c
+++ b/coreutils/echo.c
@@ -29,7 +29,7 @@
29#include <stdlib.h> 29#include <stdlib.h>
30#include "busybox.h" 30#include "busybox.h"
31 31
32int bb_echo(int ATTRIBUTE_UNUSED argc, char **argv) 32int bb_echo(char **argv)
33{ 33{
34#ifndef CONFIG_FEATURE_FANCY_ECHO 34#ifndef CONFIG_FEATURE_FANCY_ECHO
35#define eflag '\\' 35#define eflag '\\'
@@ -114,7 +114,7 @@ just_echo:
114 114
115int echo_main(int argc, char** argv) 115int echo_main(int argc, char** argv)
116{ 116{
117 (void)bb_echo(argc, argv); 117 (void)bb_echo(argv);
118 fflush_stdout_and_exit(EXIT_SUCCESS); 118 fflush_stdout_and_exit(EXIT_SUCCESS);
119} 119}
120 120