diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-12-13 13:25:07 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-12-13 23:04:26 -0800 |
commit | c279d7e9869740a6d64b0d1d70f7968af68d2071 (patch) | |
tree | 039ed15f8db0c4747b7114881257c1d17a89925e /builtin-rerere.c | |
parent | 792c1583c8ab94c8cee77ca66685983259d7510e (diff) | |
download | git-c279d7e9869740a6d64b0d1d70f7968af68d2071.tar.gz |
xdl_diff: identify call sites.
This inserts a new function xdi_diff() that currently does not
do anything other than calling the underlying xdl_diff() to the
callchain of current callers of xdl_diff() function.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-rerere.c')
-rw-r--r-- | builtin-rerere.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-rerere.c b/builtin-rerere.c index 74493237c9..37e6248138 100644 --- a/builtin-rerere.c +++ b/builtin-rerere.c @@ -260,7 +260,7 @@ static int diff_two(const char *file1, const char *label1, memset(&xecfg, 0, sizeof(xecfg)); xecfg.ctxlen = 3; ecb.outf = outf; - xdl_diff(&minus, &plus, &xpp, &xecfg, &ecb); + xdi_diff(&minus, &plus, &xpp, &xecfg, &ecb); free(minus.ptr); free(plus.ptr); |