summaryrefslogtreecommitdiff
path: root/src/sha1_lookup.c
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2013-08-14 10:34:07 +0200
committerVicent Marti <tanoku@gmail.com>2013-08-14 10:34:07 +0200
commit59547ce77269e0667426327d9166aad0954bc686 (patch)
tree959fcacefb49daaa4f233f3bbc2a4694b98a38c2 /src/sha1_lookup.c
parente2164da5eb2d76129b8dae0b5ea2f7a606324fba (diff)
downloadlibgit2-59547ce77269e0667426327d9166aad0954bc686.tar.gz
oid: Helper for old-school hashcmpvmg/no-lookup
Diffstat (limited to 'src/sha1_lookup.c')
-rw-r--r--src/sha1_lookup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sha1_lookup.c b/src/sha1_lookup.c
index 35149a18d..ce067caaa 100644
--- a/src/sha1_lookup.c
+++ b/src/sha1_lookup.c
@@ -187,7 +187,7 @@ int sha1_position(const void *table,
do {
unsigned mi = (lo + hi) / 2;
- int cmp = git_oid__cmp((git_oid *)(base + mi * stride), (git_oid *)key);
+ int cmp = git_oid__hashcmp(base + mi * stride, key);
if (!cmp)
return mi;