| 6720 | } |
| 6721 | |
| 6722 | static int check_pair_status(struct diff_filepair *p) |
| 6723 | { |
| 6724 | switch (p->status) { |
| 6725 | case DIFF_STATUS_UNKNOWN: |
| 6726 | return 0; |
| 6727 | case 0: |
| 6728 | die("internal error in diff-resolve-rename-copy"); |
| 6729 | default: |
| 6730 | return 1; |
| 6731 | } |
| 6732 | } |
| 6733 | |
| 6734 | static void flush_one_pair(struct diff_filepair *p, struct diff_options *opt) |
| 6735 | { |
no test coverage detected