summaryrefslogtreecommitdiff
path: root/src/diff_tform.c
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-04-29 13:52:12 -0700
committerRussell Belfer <rb@github.com>2013-04-29 13:52:12 -0700
commitb7f167da29effa125663b143d3daf79a6ad88d2e (patch)
tree585355250e7078c7018a78c68539dc139912013b /src/diff_tform.c
parentaa8f010120577e61715f3ae1286a03055815f9c3 (diff)
downloadlibgit2-b7f167da29effa125663b143d3daf79a6ad88d2e.tar.gz
Make git_oid_cmp public and add git_oid__cmp
Diffstat (limited to 'src/diff_tform.c')
-rw-r--r--src/diff_tform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/diff_tform.c b/src/diff_tform.c
index efcb19d95..5c1a86cb9 100644
--- a/src/diff_tform.c
+++ b/src/diff_tform.c
@@ -429,7 +429,7 @@ static int similarity_measure(
if (GIT_MODE_TYPE(a_file->mode) != GIT_MODE_TYPE(b_file->mode))
return 0;
- if (git_oid_cmp(&a_file->oid, &b_file->oid) == 0)
+ if (git_oid__cmp(&a_file->oid, &b_file->oid) == 0)
return 100;
/* update signature cache if needed */