diff options
author | Denys Vlasenko | 2009-11-11 21:05:42 +0100 |
---|---|---|
committer | Denys Vlasenko | 2009-11-11 21:05:42 +0100 |
commit | ab19ede65595f6c0daba1e9b6c7c0a2ede341fec (patch) | |
tree | 144f7f397a4c193e5af9b445d14fee7d471107d2 /modutils/modprobe.c | |
parent | c096a6c2084b6d920182714beb842ebb40087182 (diff) | |
download | busybox-ab19ede65595f6c0daba1e9b6c7c0a2ede341fec.zip busybox-ab19ede65595f6c0daba1e9b6c7c0a2ede341fec.tar.gz |
tidy up O_NONBLOCK usage. use libbb functions in stty.
Added O_RDONLY where improves readability. Note: O_RDONLY == 0,
so it is there even if not specified.
function old new delta
stty_main 1289 1235 -54
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'modutils/modprobe.c')
-rw-r--r-- | modutils/modprobe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/modprobe.c b/modutils/modprobe.c index 0d65d5f..ca85ee7 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c @@ -373,7 +373,7 @@ int modprobe_main(int argc UNUSED_PARAM, char **argv) * "If name is NULL, all unused modules marked * autoclean will be removed". */ - if (bb_delete_module(NULL, O_NONBLOCK|O_EXCL) != 0) + if (bb_delete_module(NULL, O_NONBLOCK | O_EXCL) != 0) bb_perror_msg_and_die("rmmod"); } return EXIT_SUCCESS; |