aboutsummaryrefslogtreecommitdiffstats
path: root/tools/crlf.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tools/crlf.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/crlf.c b/tools/crlf.c
index e6ac8c70f..ecb6eecdb 100644
--- a/tools/crlf.c
+++ b/tools/crlf.c
@@ -25,12 +25,12 @@ main(int argc, char **argv)
lc = -1;
while( (c=getchar()) != EOF ) {
- #if 0
+#if 0
if( c == '\r' && lc == ' ' )
fprintf(stderr,"SP,CR at %d\n", off );
if( c == '\n' && lc == ' ' )
fprintf(stderr,"SP,LF at %d\n", off );
- #endif
+#endif
if( c == '\n' && lc == '\r' )
putchar(c);
else if( c == '\n' ) {
@@ -50,4 +50,3 @@ main(int argc, char **argv)
return 0;
}
-