mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Omit invalid space from printf() format string
in price_table_gen.c.
This commit is contained in:
parent
01b4b19f49
commit
54ec204f58
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ main(void)
|
||||||
if (i % 8 == 0)
|
if (i % 8 == 0)
|
||||||
printf("\n\t");
|
printf("\n\t");
|
||||||
|
|
||||||
printf("% 4" PRIu32, lzma_rc_prob_prices[i]);
|
printf("%4" PRIu32, lzma_rc_prob_prices[i]);
|
||||||
|
|
||||||
if (i != array_size - 1)
|
if (i != array_size - 1)
|
||||||
printf(",");
|
printf(",");
|
||||||
|
|
Loading…
Reference in a new issue