| .. | .. |
|---|
| 583 | 583 | if (ret != XZ_OK) |
|---|
| 584 | 584 | return ret; |
|---|
| 585 | 585 | |
|---|
| 586 | | - /* Fall through */ |
|---|
| 586 | + /* fall through */ |
|---|
| 587 | 587 | |
|---|
| 588 | 588 | case SEQ_BLOCK_START: |
|---|
| 589 | 589 | /* We need one byte of input to continue. */ |
|---|
| .. | .. |
|---|
| 608 | 608 | s->temp.pos = 0; |
|---|
| 609 | 609 | s->sequence = SEQ_BLOCK_HEADER; |
|---|
| 610 | 610 | |
|---|
| 611 | | - /* Fall through */ |
|---|
| 611 | + /* fall through */ |
|---|
| 612 | 612 | |
|---|
| 613 | 613 | case SEQ_BLOCK_HEADER: |
|---|
| 614 | 614 | if (!fill_temp(s, b)) |
|---|
| .. | .. |
|---|
| 620 | 620 | |
|---|
| 621 | 621 | s->sequence = SEQ_BLOCK_UNCOMPRESS; |
|---|
| 622 | 622 | |
|---|
| 623 | | - /* Fall through */ |
|---|
| 623 | + /* fall through */ |
|---|
| 624 | 624 | |
|---|
| 625 | 625 | case SEQ_BLOCK_UNCOMPRESS: |
|---|
| 626 | 626 | ret = dec_block(s, b); |
|---|
| .. | .. |
|---|
| 629 | 629 | |
|---|
| 630 | 630 | s->sequence = SEQ_BLOCK_PADDING; |
|---|
| 631 | 631 | |
|---|
| 632 | | - /* Fall through */ |
|---|
| 632 | + /* fall through */ |
|---|
| 633 | 633 | |
|---|
| 634 | 634 | case SEQ_BLOCK_PADDING: |
|---|
| 635 | 635 | /* |
|---|
| .. | .. |
|---|
| 651 | 651 | |
|---|
| 652 | 652 | s->sequence = SEQ_BLOCK_CHECK; |
|---|
| 653 | 653 | |
|---|
| 654 | | - /* Fall through */ |
|---|
| 654 | + /* fall through */ |
|---|
| 655 | 655 | |
|---|
| 656 | 656 | case SEQ_BLOCK_CHECK: |
|---|
| 657 | 657 | if (s->check_type == XZ_CHECK_CRC32) { |
|---|
| .. | .. |
|---|
| 675 | 675 | |
|---|
| 676 | 676 | s->sequence = SEQ_INDEX_PADDING; |
|---|
| 677 | 677 | |
|---|
| 678 | | - /* Fall through */ |
|---|
| 678 | + /* fall through */ |
|---|
| 679 | 679 | |
|---|
| 680 | 680 | case SEQ_INDEX_PADDING: |
|---|
| 681 | 681 | while ((s->index.size + (b->in_pos - s->in_start)) |
|---|
| .. | .. |
|---|
| 699 | 699 | |
|---|
| 700 | 700 | s->sequence = SEQ_INDEX_CRC32; |
|---|
| 701 | 701 | |
|---|
| 702 | | - /* Fall through */ |
|---|
| 702 | + /* fall through */ |
|---|
| 703 | 703 | |
|---|
| 704 | 704 | case SEQ_INDEX_CRC32: |
|---|
| 705 | 705 | ret = crc32_validate(s, b); |
|---|
| .. | .. |
|---|
| 709 | 709 | s->temp.size = STREAM_HEADER_SIZE; |
|---|
| 710 | 710 | s->sequence = SEQ_STREAM_FOOTER; |
|---|
| 711 | 711 | |
|---|
| 712 | | - /* Fall through */ |
|---|
| 712 | + /* fall through */ |
|---|
| 713 | 713 | |
|---|
| 714 | 714 | case SEQ_STREAM_FOOTER: |
|---|
| 715 | 715 | if (!fill_temp(s, b)) |
|---|