diff options
author | Denis Vlasenko | 2006-09-29 21:30:43 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-09-29 21:30:43 +0000 |
commit | a959588b80529ef5e02048ed71f3c7bf9a117217 (patch) | |
tree | 331b3963cb98fded02b753ca33bfa37cb48a97c6 /coreutils | |
parent | 6c30db8bd37da1466dc71bf3c8c20851d8f46c43 (diff) | |
download | busybox-a959588b80529ef5e02048ed71f3c7bf9a117217.zip busybox-a959588b80529ef5e02048ed71f3c7bf9a117217.tar.gz |
Yet another silly little byte saving. couldn't -> cannot
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 |