summaryrefslogtreecommitdiff
path: root/builtin-blame.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2007-12-13 21:25:07 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-12-14 07:04:26 (GMT)
commitc279d7e9869740a6d64b0d1d70f7968af68d2071 (patch)
tree039ed15f8db0c4747b7114881257c1d17a89925e /builtin-blame.c
parent792c1583c8ab94c8cee77ca66685983259d7510e (diff)
downloadgit-c279d7e9869740a6d64b0d1d70f7968af68d2071.zip
git-c279d7e9869740a6d64b0d1d70f7968af68d2071.tar.gz
git-c279d7e9869740a6d64b0d1d70f7968af68d2071.tar.bz2
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-blame.c')
-rw-r--r--builtin-blame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-blame.c b/builtin-blame.c
index 5466d01..99ea0a0 100644
--- a/builtin-blame.c
+++ b/builtin-blame.c
@@ -542,7 +542,7 @@ static struct patch *compare_buffer(mmfile_t *file_p, mmfile_t *file_o,
state.ret->chunks = NULL;
state.ret->num = 0;
- xdl_diff(file_p, file_o, &xpp, &xecfg, &ecb);
+ xdi_diff(file_p, file_o, &xpp, &xecfg, &ecb);
if (state.ret->num) {
struct chunk *chunk;