X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=archive-zip.c;h=7c4984886f14aaba5d6a71c3b9213934b45d713a;hb=885b98107547fe3f6d17ca0af0578e040f7600d0;hp=36e922a1f2ffe34264ac55c002072cb2777e7026;hpb=d63afe9ebb9b27952d3c29215a246b252f2d80f9;p=git.git diff --git a/archive-zip.c b/archive-zip.c index 36e922a1f..7c4984886 100644 --- a/archive-zip.c +++ b/archive-zip.c @@ -1,7 +1,6 @@ /* * Copyright (c) 2006 Rene Scharfe */ -#include #include "cache.h" #include "commit.h" #include "blob.h" @@ -168,7 +167,7 @@ static int write_zip_entry(const unsigned char *sha1, int pathlen; unsigned char *out; char *path; - char type[20]; + enum object_type type; void *buffer = NULL; void *deflated = NULL; @@ -196,7 +195,7 @@ static int write_zip_entry(const unsigned char *sha1, if (S_ISREG(mode) && zlib_compression_level != 0) method = 8; result = 0; - buffer = read_sha1_file(sha1, type, &size); + buffer = read_sha1_file(sha1, &type, &size); if (!buffer) die("cannot read %s", sha1_to_hex(sha1)); crc = crc32(crc, buffer, size);