]> git.ipfire.org Git - thirdparty/git.git/blobdiff - diffcore-rename.c
l10n: sv.po: Update Swedish translation (2257t0f0u)
[thirdparty/git.git] / diffcore-rename.c
index 6fa97d44336d4f6250b94e5c20de56b9c51bb66e..2e44a3745939bb75841730ba0cff78ea872df8d9 100644 (file)
@@ -257,15 +257,14 @@ static int find_identical_files(struct hashmap *srcs,
        int renames = 0;
 
        struct diff_filespec *target = rename_dst[dst_index].two;
-       struct file_similarity *p, *best, dst;
+       struct file_similarity *p, *best = NULL;
        int i = 100, best_score = -1;
 
        /*
         * Find the best source match for specified destination.
         */
-       best = NULL;
-       hashmap_entry_init(&dst, hash_filespec(target));
-       for (p = hashmap_get(srcs, &dst, NULL); p; p = hashmap_get_next(srcs, p)) {
+       p = hashmap_get_from_hash(srcs, hash_filespec(target), NULL);
+       for (; p; p = hashmap_get_next(srcs, p)) {
                int score;
                struct diff_filespec *source = p->filespec;