aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/tr
diff options
context:
space:
mode:
authorRodney W. Grimes <rgrimes@FreeBSD.org>1995-05-30 06:41:30 +0000
committerRodney W. Grimes <rgrimes@FreeBSD.org>1995-05-30 06:41:30 +0000
commit7799f52a32f592a7efe259bc3411ba52d13db797 (patch)
tree350f6f98843363254f9afe467ae0c92d5a9d7f43 /usr.bin/tr
parent5ebc7e6281887681c3a348a5a4c902e262ccd656 (diff)
Notes
Diffstat (limited to 'usr.bin/tr')
-rw-r--r--usr.bin/tr/tr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/tr/tr.c b/usr.bin/tr/tr.c
index d92a51997862b..89b39b8b62571 100644
--- a/usr.bin/tr/tr.c
+++ b/usr.bin/tr/tr.c
@@ -139,7 +139,7 @@ main(argc, argv)
setup(string1, argv[0], &s1, cflag);
setup(string2, argv[1], &s2, 0);
-
+
for (lastch = OOBCH; (ch = getchar()) != EOF;)
if (!string1[ch] && (!string2[ch] || lastch != ch)) {
lastch = ch;