diff options
Diffstat (limited to 'toys')
-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; |