]> git.ipfire.org Git - thirdparty/git.git/blobdiff - pack-write.c
l10n: git.pot: v2.30.0 round 2 (1 new, 2 removed)
[thirdparty/git.git] / pack-write.c
index 4bdd44cf7359e47a78f32bf75be1711fdcc632c9..3513665e1e1be606dd116370fefbbb2a0d781245 100644 (file)
@@ -48,7 +48,6 @@ const char *write_idx_file(const char *index_name, struct pack_idx_entry **objec
        struct hashfile *f;
        struct pack_idx_entry **sorted_by_sha, **list, **last;
        off_t last_obj_offset = 0;
-       uint32_t array[256];
        int i, fd;
        uint32_t index_version;
 
@@ -106,10 +105,9 @@ const char *write_idx_file(const char *index_name, struct pack_idx_entry **objec
                                break;
                        next++;
                }
-               array[i] = htonl(next - sorted_by_sha);
+               hashwrite_be32(f, next - sorted_by_sha);
                list = next;
        }
-       hashwrite(f, array, 256 * 4);
 
        /*
         * Write the actual SHA1 entries..