diff options
Diffstat (limited to 'coreutils/env.c')
-rw-r--r-- | coreutils/env.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/env.c b/coreutils/env.c index 4cdbeae..b42d904 100644 --- a/coreutils/env.c +++ b/coreutils/env.c @@ -63,10 +63,10 @@ int env_main(int argc, char** argv) ++argv; } - if(opt & 1) + if (opt & 1) environ = cleanenv; - else if(opt & 2) { - while(unset_env) { + else if (opt & 2) { + while (unset_env) { unsetenv(unset_env->data); unset_env = unset_env->link; } |