summaryrefslogtreecommitdiff
path: root/usr.bin/write/write.c
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1995-10-28 22:48:27 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1995-10-28 22:48:27 +0000
commitee15822acde9606c4eabc68ca38a82aa73dc8eae (patch)
tree0cbc412a57ab8ad60b7b9a85b6b4b3ffe0a01403 /usr.bin/write/write.c
parent290b1ca54e778d4a643d4b843a4f123bdf2a7446 (diff)
Notes
Diffstat (limited to 'usr.bin/write/write.c')
-rw-r--r--usr.bin/write/write.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/write/write.c b/usr.bin/write/write.c
index 7d99f21df47d..a609cd24b778 100644
--- a/usr.bin/write/write.c
+++ b/usr.bin/write/write.c
@@ -308,7 +308,7 @@ wr_fputs(s)
#define PUTC(c) if (putchar(c) == EOF) goto err;
for (; *s != '\0'; ++s) {
- c = toascii(*s);
+ c = *s;
if (c == '\n') {
PUTC('\r');
PUTC('\n');