]> git.ipfire.org Git - thirdparty/git.git/blobdiff - pack-bitmap-write.c
Merge branch 'rs/misc-cleanups'
[thirdparty/git.git] / pack-bitmap-write.c
index a7a4964b50d1936be0d769724c1b0b5fa5420672..5e998bdaa7998817a4dc73e5d6da711e0615b992 100644 (file)
@@ -503,8 +503,7 @@ static void write_hash_cache(struct hashfile *f,
 
        for (i = 0; i < index_nr; ++i) {
                struct object_entry *entry = (struct object_entry *)index[i];
-               uint32_t hash_value = htonl(entry->hash);
-               hashwrite(f, &hash_value, sizeof(hash_value));
+               hashwrite_be32(f, entry->hash);
        }
 }