aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coreutils/echo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/echo.c b/coreutils/echo.c
index 9663894ec..1c4174559 100644
--- a/coreutils/echo.c
+++ b/coreutils/echo.c
@@ -72,7 +72,7 @@ int echo_main(int argc UNUSED_PARAM, char **argv)
72 unsigned buflen; 72 unsigned buflen;
73#if !ENABLE_FEATURE_FANCY_ECHO 73#if !ENABLE_FEATURE_FANCY_ECHO
74 enum { 74 enum {
75 eflag = '\\', 75 eflag = 0, /* 0 -- disable escape sequences */
76 nflag = 1, /* 1 -- print '\n' */ 76 nflag = 1, /* 1 -- print '\n' */
77 }; 77 };
78 78