remove trailing blanks from all but .xz files
This commit is contained in:
parent
667481f1aa
commit
850f740042
|
@ -76,7 +76,6 @@ int main(int argc, char *argv[]) {
|
|||
exit(0);
|
||||
putchar(ch);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
blocks++;
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue