---
builtin/pack-objects.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/builtin/pack-objects.c b/builtin/pack-objects.c
index c1ec9ef3232cb..3017beb8236fa 100644
--- a/builtin/pack-objects.c
+++ b/builtin/pack-objects.c
@@ -197,9 +197,8 @@ static unsigned long write_large_blob_data(struct
git_istream *st, struct hashfi
const struct object_id *oid)
{
git_zstream stream;
- const unsigned bufsize = 16384;
- unsigned char ibuf[bufsize];
- unsigned char obuf[bufsize];
+ unsigned char ibuf[16384];
+ unsigned char obuf[16384];
unsigned long olen = 0;
git_deflate_init(&stream, pack_compression_level);
--
https://github.com/git/git/pull/572