| 7707 | } |
| 7708 | |
| 7709 | void diff_change(struct diff_options *options, |
| 7710 | unsigned old_mode, unsigned new_mode, |
| 7711 | const struct object_id *old_oid, |
| 7712 | const struct object_id *new_oid, |
| 7713 | int old_oid_valid, int new_oid_valid, |
| 7714 | const char *concatpath, |
| 7715 | unsigned old_dirty_submodule, unsigned new_dirty_submodule) |
| 7716 | { |
| 7717 | diff_queue_change(&diff_queued_diff, options, old_mode, new_mode, |
| 7718 | old_oid, new_oid, old_oid_valid, new_oid_valid, |
| 7719 | concatpath, old_dirty_submodule, new_dirty_submodule); |
| 7720 | } |
| 7721 | |
| 7722 | void diff_same(struct diff_options *options, |
| 7723 | unsigned mode, |
no test coverage detected