diff options
author | Charlie Shepherd <masterdriverz@gentoo.org> | 2007-11-06 23:24:56 +0000 |
---|---|---|
committer | Charlie Shepherd <masterdriverz@gentoo.org> | 2007-11-06 23:24:56 +0000 |
commit | 5d43eb420e036d993a9e100c9b46d7b78e323123 (patch) | |
tree | 6e32978a1972cab025b269bd18e3eb399e5326d3 /toys/catv.c | |
parent | 5bc74b666e079df219e075b2d41c9a0be34b5721 (diff) | |
download | toybox-5d43eb420e036d993a9e100c9b46d7b78e323123.tar.gz |
Replace space indent with tab indent
Diffstat (limited to 'toys/catv.c')
-rw-r--r-- | toys/catv.c | 2 |
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; |