aboutsummaryrefslogtreecommitdiff
path: root/toys
diff options
context:
space:
mode:
authorCharlie Shepherd <masterdriverz@gentoo.org>2007-11-06 23:24:56 +0000
committerCharlie Shepherd <masterdriverz@gentoo.org>2007-11-06 23:24:56 +0000
commit5d43eb420e036d993a9e100c9b46d7b78e323123 (patch)
tree6e32978a1972cab025b269bd18e3eb399e5326d3 /toys
parent5bc74b666e079df219e075b2d41c9a0be34b5721 (diff)
downloadtoybox-5d43eb420e036d993a9e100c9b46d7b78e323123.tar.gz
Replace space indent with tab indent
Diffstat (limited to 'toys')
-rw-r--r--toys/catv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/catv.c b/toys/catv.c
index ee23061d..161ca514 100644
--- a/toys/catv.c
+++ b/toys/catv.c
@@ -44,7 +44,7 @@ int catv_main(void)
}
if (c < 32) {
if (c == 10) {
- if (toys.optflags & 1) putchar('$');
+ if (toys.optflags & 1) putchar('$');
} else if (toys.optflags & (c==9 ? 2 : 4)) {
printf("^%c", c+'@');
continue;