diff --git a/usr.bin/write/write.c b/usr.bin/write/write.c index 7d99f21df47..a609cd24b77 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');