diff options
author | Jim Meyering <meyering@redhat.com> | 2009-01-19 21:37:16 +0100 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-01-26 20:01:51 +0200 |
commit | 850f7400428dc9c5fd08a2f35a5bd2c9e45aede2 (patch) | |
tree | 14a0142d5d5b37c860dffc5d6a11100100aa79b9 /src/liblzma | |
parent | Add lzma_block_buffer_decode(). (diff) | |
download | xz-850f7400428dc9c5fd08a2f35a5bd2c9e45aede2.tar.xz |
remove trailing blanks from all but .xz files
Diffstat (limited to 'src/liblzma')
-rw-r--r-- | src/liblzma/check/crc32_tablegen.c | 2 | ||||
-rw-r--r-- | src/liblzma/check/crc64_tablegen.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/liblzma/check/crc32_tablegen.c b/src/liblzma/check/crc32_tablegen.c index d0c41caa..fbcbf474 100644 --- a/src/liblzma/check/crc32_tablegen.c +++ b/src/liblzma/check/crc32_tablegen.c @@ -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) diff --git a/src/liblzma/check/crc64_tablegen.c b/src/liblzma/check/crc64_tablegen.c index b20086f8..a0fa4ab2 100644 --- a/src/liblzma/check/crc64_tablegen.c +++ b/src/liblzma/check/crc64_tablegen.c @@ -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) |