diff options
author | Elliott Hughes <enh@google.com> | 2019-01-22 18:21:23 -0800 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-01-22 22:20:46 -0600 |
commit | 154221aba3bd1407ea60ef6b3d73a59143182e36 (patch) | |
tree | 031477aa20c2d2230758089b8d82bb2ceb367237 /toys/posix/xargs.c | |
parent | bbadc5e14136a4a2011080c08e064108d71e1429 (diff) | |
download | toybox-154221aba3bd1407ea60ef6b3d73a59143182e36.tar.gz |
Whitespace: remove tabs from indentation.
I accidentally added a tab in xargs.c, so as penance I'll clean up all
the tabs.
Diffstat (limited to 'toys/posix/xargs.c')
-rw-r--r-- | toys/posix/xargs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/xargs.c b/toys/posix/xargs.c index e23d14c4..9a3e9dae 100644 --- a/toys/posix/xargs.c +++ b/toys/posix/xargs.c @@ -186,7 +186,7 @@ void xargs_main(void) for (i = 0; out[i]; ++i) fprintf(stderr, "%s ", out[i]); if (FLAG(p)) { fprintf(stderr, "?"); - doit = yesno(0); + doit = yesno(0); } else fprintf(stderr, "\n"); } |