aboutsummaryrefslogtreecommitdiff
path: root/toys/echo.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2007-11-15 18:30:30 -0600
committerRob Landley <rob@landley.net>2007-11-15 18:30:30 -0600
commit2c226859cfc911c4a1eea009897050a16714aeec (patch)
tree9ae05df2a1907a25eb8eec8af0e677775bb3e74b /toys/echo.c
parent5d43eb420e036d993a9e100c9b46d7b78e323123 (diff)
downloadtoybox-2c226859cfc911c4a1eea009897050a16714aeec.tar.gz
Remove trailing whitespace (thanks to Charlie Shepherd), and a couple comment
tweaks.
Diffstat (limited to 'toys/echo.c')
-rw-r--r--toys/echo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/toys/echo.c b/toys/echo.c
index 397c21a7..d8ee08f2 100644
--- a/toys/echo.c
+++ b/toys/echo.c
@@ -9,14 +9,14 @@ int echo_main(void)
{
int i = 0;
char *arg, *from = "\\abfnrtv", *to = "\\\a\b\f\n\r\t\v";
-
+
for (;;) {
arg = toys.optargs[i];
if (!arg) break;
if (i++) xputc(' ');
// Handle -e
-
+
if (toys.optflags&2) {
int c, j = 0;
for (;;) {