silly size savings and capitalization fixes

This commit is contained in:
Denis Vlasenko
2006-10-26 00:37:00 +00:00
parent e63a0dee9e
commit c6f188def8
24 changed files with 81 additions and 81 deletions

View File

@@ -485,7 +485,7 @@ static void showdirs(struct dnode **dn, int ndirs, int first)
for (i = 0; i < ndirs; i++) {
if (all_fmt & (DISP_DIRNAME | DISP_RECURSIVE)) {
if (!first)
printf("\n");
puts("");
first = 0;
printf("%s:\n", dn[i]->fullname);
}

View File

@@ -65,7 +65,7 @@ static int bsd_sum_file(const char *file, int print_name)
if (print_name > 1)
puts(file);
else
printf("\n");
puts("");
out:
return ret;
}