]> git.ipfire.org Git - thirdparty/git.git/commitdiff
pack-bitmap-write: use hashwrite_be32() in write_hash_cache()
authorRené Scharfe <l.s.r@web.de>
Sun, 6 Sep 2020 08:59:06 +0000 (10:59 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sun, 6 Sep 2020 20:40:41 +0000 (13:40 -0700)
Call hashwrite_be32() instead of open-coding it.  This is shorter and
easier to read.

Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
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);
        }
 }