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:
parent
667481f1aa
commit
850f740042
7 changed files with 12 additions and 13 deletions
|
@ -76,7 +76,6 @@ int main(int argc, char *argv[]) {
|
||||||
exit(0);
|
exit(0);
|
||||||
putchar(ch);
|
putchar(ch);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
blocks++;
|
blocks++;
|
||||||
|
|
|
@ -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)
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue