]> git.ipfire.org Git - thirdparty/git.git/blobdiff - builtin/index-pack.c
convert "oidcmp() == 0" to oideq()
[thirdparty/git.git] / builtin / index-pack.c
index 9582ead9507ee27f88386fcc55c044eba233c770..edcb0a3dcaa66335cafd34bf084b17b1d51998fb 100644 (file)
@@ -719,9 +719,9 @@ static void find_ref_delta_children(const struct object_id *oid,
                *last_index = -1;
                return;
        }
-       while (first > 0 && !oidcmp(&ref_deltas[first - 1].oid, oid))
+       while (first > 0 && oideq(&ref_deltas[first - 1].oid, oid))
                --first;
-       while (last < end && !oidcmp(&ref_deltas[last + 1].oid, oid))
+       while (last < end && oideq(&ref_deltas[last + 1].oid, oid))
                ++last;
        *first_index = first;
        *last_index = last;