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

@ -1807,7 +1807,7 @@ check_consistency(const struct partition *p, int partition)
printf("Partition %d has different physical/logical "
"beginnings (non-Linux?):\n", partition + 1);
printf(" phys=(%d, %d, %d) ", pbc, pbh, pbs);
printf("logical=(%d, %d, %d)\n",lbc, lbh, lbs);
printf("logical=(%d, %d, %d)\n", lbc, lbh, lbs);
}
/* Same physical / logical ending? */

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);

View File

@ -165,12 +165,12 @@ set:
buf[3], buf[2], buf[1], buf[0]);
break;
case UUID_NTFS:
sprintf(id->uuid,"%02X%02X%02X%02X%02X%02X%02X%02X",
sprintf(id->uuid, "%02X%02X%02X%02X%02X%02X%02X%02X",
buf[7], buf[6], buf[5], buf[4],
buf[3], buf[2], buf[1], buf[0]);
break;
case UUID_HFS:
sprintf(id->uuid,"%02X%02X%02X%02X%02X%02X%02X%02X",
sprintf(id->uuid, "%02X%02X%02X%02X%02X%02X%02X%02X",
buf[0], buf[1], buf[2], buf[3],
buf[4], buf[5], buf[6], buf[7]);
break;