X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=archive-zip.c;h=7c4984886f14aaba5d6a71c3b9213934b45d713a;hb=f98157720239f0dd94d03632dc873e3eb3135e2f;hp=f31b8ed8236c3fcad10ac9a84e2f508f11e1a6cf;hpb=38ebbacd93eb547b3608b64a2efc60fd79e1ea85;p=git.git diff --git a/archive-zip.c b/archive-zip.c index f31b8ed82..7c4984886 100644 --- a/archive-zip.c +++ b/archive-zip.c @@ -167,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; @@ -195,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);