remove trailing blanks from all but .xz files

This commit is contained in:
Jim Meyering 2009-01-19 21:37:16 +01:00 committed by Lasse Collin
parent 667481f1aa
commit 850f740042
7 changed files with 12 additions and 13 deletions

View File

@ -76,7 +76,6 @@ int main(int argc, char *argv[]) {
exit(0);
putchar(ch);
}
}
}
blocks++;

View File

@ -70,7 +70,7 @@ print_crc32_table(void)
printf("0x%08" PRIX32, crc32_table[s][b]);
if (b != 255)
printf(", ");
printf(",%s", (b+1) % 4 == 0 ? "" : " ");
}
if (s == 7)

View File

@ -71,7 +71,7 @@ print_crc64_table(void)
crc64_table[s][b]);
if (b != 255)
printf(", ");
printf(",%s", (b+1) % 2 == 0 ? "" : " ");
}
if (s == 3)