diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/stty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/stty.c b/coreutils/stty.c index 80b94db..a41faaf 100644 --- a/coreutils/stty.c +++ b/coreutils/stty.c @@ -792,7 +792,7 @@ end_option: } fdflags = fcntl(STDIN_FILENO, F_GETFL); if (fdflags == -1 || fcntl(STDIN_FILENO, F_SETFL, fdflags & ~O_NONBLOCK) < 0) - perror_on_device_and_die("%s: couldn't reset non-blocking mode"); + perror_on_device_and_die("%s: cannot reset non-blocking mode"); } /* Initialize to all zeroes so there is no risk memcmp will report a |