]> git.ipfire.org Git - thirdparty/git.git/blobdiff - pack-write.c
Merge branch 'ma/list-object-filter-opt-msgfix'
[thirdparty/git.git] / pack-write.c
index 23e19cc1ecb2ed43f2559e45541f24c76ccde6f6..3513665e1e1be606dd116370fefbbb2a0d781245 100644 (file)
@@ -151,13 +151,10 @@ const char *write_idx_file(const char *index_name, struct pack_idx_entry **objec
                while (nr_large_offset) {
                        struct pack_idx_entry *obj = *list++;
                        uint64_t offset = obj->offset;
-                       uint32_t split[2];
 
                        if (!need_large_offset(offset, opts))
                                continue;
-                       split[0] = htonl(offset >> 32);
-                       split[1] = htonl(offset & 0xffffffff);
-                       hashwrite(f, split, 8);
+                       hashwrite_be64(f, offset);
                        nr_large_offset--;
                }
        }