style fixes, no code changes

This commit is contained in:
Denis Vlasenko
2008-06-26 14:32:57 +00:00
parent 2649f215ae
commit f5d8c90d73
11 changed files with 19 additions and 19 deletions

View File

@ -255,9 +255,9 @@ static struct option *add_long_options(struct option *long_options, char *option
static void set_shell(const char *new_shell)
{
if (!strcmp(new_shell,"bash") || !strcmp(new_shell,"sh"))
if (!strcmp(new_shell, "bash") || !strcmp(new_shell, "sh"))
return;
if (!strcmp(new_shell,"tcsh") || !strcmp(new_shell,"csh"))
if (!strcmp(new_shell, "tcsh") || !strcmp(new_shell, "csh"))
option_mask32 |= SHELL_IS_TCSH;
else
bb_error_msg("unknown shell '%s', assuming bash", new_shell);