diff options
author | Vicent Martà <tanoku@gmail.com> | 2012-02-15 16:56:56 +0100 |
---|---|---|
committer | Vicent Martà <tanoku@gmail.com> | 2012-02-15 16:56:56 +0100 |
commit | 0c3bae6268c404fc3717cc90ba1bc5db91c8cbe6 (patch) | |
tree | e7052e74d5437865d1a5c4765cc857415c171e4e /src/odb_pack.c | |
parent | 66faeb5c5d38541c070a02bc53ad0846a4c5fcc9 (diff) | |
download | libgit2-0c3bae6268c404fc3717cc90ba1bc5db91c8cbe6.tar.gz |
zlib: Remove custom `git2/zlib.h` header
This is legacy compat stuff for when `deflateBound` is not defined, but
we're not embedding zlib and that function is always available. Kill
that with fire.
Diffstat (limited to 'src/odb_pack.c')
-rw-r--r-- | src/odb_pack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/odb_pack.c b/src/odb_pack.c index 3f6bb8eb3..9e1004eb8 100644 --- a/src/odb_pack.c +++ b/src/odb_pack.c @@ -6,7 +6,7 @@ */ #include "common.h" -#include "git2/zlib.h" +#include <zlib.h> #include "git2/repository.h" #include "git2/oid.h" #include "fileops.h" |