diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-29 21:30:43 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-29 21:30:43 +0000 |
commit | a959588b80529ef5e02048ed71f3c7bf9a117217 (patch) | |
tree | 331b3963cb98fded02b753ca33bfa37cb48a97c6 /coreutils/stty.c | |
parent | 6c30db8bd37da1466dc71bf3c8c20851d8f46c43 (diff) | |
download | busybox-w32-a959588b80529ef5e02048ed71f3c7bf9a117217.tar.gz busybox-w32-a959588b80529ef5e02048ed71f3c7bf9a117217.tar.bz2 busybox-w32-a959588b80529ef5e02048ed71f3c7bf9a117217.zip |
Yet another silly little byte saving. couldn't -> cannot
Diffstat (limited to 'coreutils/stty.c')
-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 80b94dbad..a41faaf1e 100644 --- a/coreutils/stty.c +++ b/coreutils/stty.c | |||
@@ -792,7 +792,7 @@ end_option: | |||
792 | } | 792 | } |
793 | fdflags = fcntl(STDIN_FILENO, F_GETFL); | 793 | fdflags = fcntl(STDIN_FILENO, F_GETFL); |
794 | if (fdflags == -1 || fcntl(STDIN_FILENO, F_SETFL, fdflags & ~O_NONBLOCK) < 0) | 794 | if (fdflags == -1 || fcntl(STDIN_FILENO, F_SETFL, fdflags & ~O_NONBLOCK) < 0) |
795 | perror_on_device_and_die("%s: couldn't reset non-blocking mode"); | 795 | perror_on_device_and_die("%s: cannot reset non-blocking mode"); |
796 | } | 796 | } |
797 | 797 | ||
798 | /* Initialize to all zeroes so there is no risk memcmp will report a | 798 | /* Initialize to all zeroes so there is no risk memcmp will report a |