changeset 155:6c7836dbc16e

Replace space indent with tab indent
author Charlie Shepherd <masterdriverz@gentoo.org>
date Tue, 06 Nov 2007 23:24:56 +0000
parents 05d80f4dfdb4
children 1e8f4b05cb65
files toys/catv.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/toys/catv.c	Tue Nov 06 23:12:03 2007 +0000
+++ b/toys/catv.c	Tue Nov 06 23:24:56 2007 +0000
@@ -44,7 +44,7 @@
 				}
 				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;