From bd8f43dbab871d19484887556632af50749786b6 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Fri, 8 Sep 2006 17:31:55 +0000 Subject: few random readability enhansements. No code changes --- coreutils/stty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'coreutils/stty.c') diff --git a/coreutils/stty.c b/coreutils/stty.c index 073de847b..d709bfc1e 100644 --- a/coreutils/stty.c +++ b/coreutils/stty.c @@ -514,8 +514,8 @@ int stty_main(int argc, char **argv) device_name = file_name; fclose(stdin); xopen(device_name, O_RDONLY | O_NONBLOCK); - if ((fdflags = fcntl(STDIN_FILENO, F_GETFL)) == -1 - || fcntl(STDIN_FILENO, F_SETFL, fdflags & ~O_NONBLOCK) < 0) + fdflags = fcntl(STDIN_FILENO, F_GETFL); + if (fdflags == -1 || fcntl(STDIN_FILENO, F_SETFL, fdflags & ~O_NONBLOCK) < 0) perror_on_device("%s: couldn't reset non-blocking mode"); } else { device_name = bb_msg_standard_input; -- cgit v1.2.3