1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

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); exit(0);
putchar(ch); putchar(ch);
} }
} }
} }
blocks++; blocks++;

View file

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

View file

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