summaryrefslogtreecommitdiff
path: root/src/zstream.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/zstream.h')
-rw-r--r--src/zstream.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/zstream.h b/src/zstream.h
index db0cc477c..3a59d9a36 100644
--- a/src/zstream.h
+++ b/src/zstream.h
@@ -11,7 +11,7 @@
#include <zlib.h>
-#include "buffer.h"
+#include "str.h"
typedef enum {
GIT_ZSTREAM_INFLATE,
@@ -48,7 +48,7 @@ bool git_zstream_eos(git_zstream *zstream);
void git_zstream_reset(git_zstream *zstream);
-int git_zstream_deflatebuf(git_buf *out, const void *in, size_t in_len);
-int git_zstream_inflatebuf(git_buf *out, const void *in, size_t in_len);
+int git_zstream_deflatebuf(git_str *out, const void *in, size_t in_len);
+int git_zstream_inflatebuf(git_str *out, const void *in, size_t in_len);
#endif