diff options
author | Denis Vlasenko | 2007-04-12 00:32:05 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-04-12 00:32:05 +0000 |
commit | 51742f4bb0c57a4d5063ece9437a2f34a42e52c8 (patch) | |
tree | 7a912fc65ff43bdb09078d75bfc02ad8f5380b47 /modutils/rmmod.c | |
parent | 50f7f446ecaadef6895a4ee601567e0b68330637 (diff) | |
download | busybox-51742f4bb0c57a4d5063ece9437a2f34a42e52c8.zip busybox-51742f4bb0c57a4d5063ece9437a2f34a42e52c8.tar.gz |
style fixes. No code changes
Diffstat (limited to 'modutils/rmmod.c')
-rw-r--r-- | modutils/rmmod.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modutils/rmmod.c b/modutils/rmmod.c index 0a67b89..67cf58c 100644 --- a/modutils/rmmod.c +++ b/modutils/rmmod.c @@ -46,11 +46,11 @@ int rmmod_main(int argc, char **argv) /* Parse command line. */ n = getopt32(argc, argv, "wfa"); - if((n & 1)) // --wait + if (n & 1) // --wait flags &= ~O_NONBLOCK; - if((n & 2)) // --force + if (n & 2) // --force flags |= O_TRUNC; - if((n & 4)) { + if (n & 4) { /* Unload _all_ unused modules via NULL delete_module() call */ /* until the number of modules does not change */ size_t nmod = 0; /* number of modules */ |