diff options
| author | Denys Vlasenko <dvlasenk@redhat.com> | 2010-10-29 11:46:52 +0200 |
|---|---|---|
| committer | Denys Vlasenko <dvlasenk@redhat.com> | 2010-10-29 11:46:52 +0200 |
| commit | fb132e47370378474c68ad22c1c0cb2ccee178de (patch) | |
| tree | 4f78d0fdd1c2fa2341c7d9bb17f9d98d099a238c /modutils | |
| parent | 66cb7bed33da605674c3d24734466b8e8a60e337 (diff) | |
| download | busybox-w32-fb132e47370378474c68ad22c1c0cb2ccee178de.tar.gz busybox-w32-fb132e47370378474c68ad22c1c0cb2ccee178de.tar.bz2 busybox-w32-fb132e47370378474c68ad22c1c0cb2ccee178de.zip | |
whitespace cleanup
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'modutils')
| -rw-r--r-- | modutils/rmmod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modutils/rmmod.c b/modutils/rmmod.c index dde77731f..2486511d7 100644 --- a/modutils/rmmod.c +++ b/modutils/rmmod.c | |||
| @@ -35,9 +35,9 @@ int rmmod_main(int argc UNUSED_PARAM, char **argv) | |||
| 35 | /* Parse command line. */ | 35 | /* Parse command line. */ |
| 36 | n = getopt32(argv, "wfas"); // -s ignored | 36 | n = getopt32(argv, "wfas"); // -s ignored |
| 37 | argv += optind; | 37 | argv += optind; |
| 38 | if (n & 1) // --wait | 38 | if (n & 1) // --wait |
| 39 | flags &= ~O_NONBLOCK; | 39 | flags &= ~O_NONBLOCK; |
| 40 | if (n & 2) // --force | 40 | if (n & 2) // --force |
| 41 | flags |= O_TRUNC; | 41 | flags |= O_TRUNC; |
| 42 | if (n & 4) { | 42 | if (n & 4) { |
| 43 | /* Unload _all_ unused modules via NULL delete_module() call */ | 43 | /* Unload _all_ unused modules via NULL delete_module() call */ |
