summaryrefslogtreecommitdiffstats
path: root/usr.bin/wall
diff options
context:
space:
mode:
authoralex <alex@FreeBSD.org>1996-08-11 02:20:05 +0000
committeralex <alex@FreeBSD.org>1996-08-11 02:20:05 +0000
commit057f2934d806c44b26c1f2871035aaddbdc13c86 (patch)
tree566a0f10b7c0f5e306126724b4969ce31359e8f6 /usr.bin/wall
parentb0b6f5d7b9be67f05cb8414a19ad952f7ff1b4e5 (diff)
downloadFreeBSD-src-057f2934d806c44b26c1f2871035aaddbdc13c86.zip
FreeBSD-src-057f2934d806c44b26c1f2871035aaddbdc13c86.tar.gz
Fix some improperly wrapped lines in the code.
Diffstat (limited to 'usr.bin/wall')
-rw-r--r--usr.bin/wall/wall.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/wall/wall.c b/usr.bin/wall/wall.c
index 083f0f5..791dd36 100644
--- a/usr.bin/wall/wall.c
+++ b/usr.bin/wall/wall.c
@@ -178,11 +178,9 @@ makemsg(fname)
putc('\r', fp);
putc('\n', fp);
cnt = 0;
- } else if (!isprint(ch) && !isspace(ch) && ch != '\007')
- {
+ } else if (!isprint(ch) && !isspace(ch) && ch != '\007') {
putc('^', fp);
- putc(ch^0x40, fp); /* DEL to ?, others to a
-lpha */
+ putc(ch^0x40, fp); /* DEL to ?, others to alpha */
} else
putc(ch, fp);
}
OpenPOWER on IntegriCloud