git-tar-tree: no more void pointer arithmetic
[git.git] / strbuf.h
index da678e5..74cc012 100644 (file)
--- a/strbuf.h
+++ b/strbuf.h
@@ -4,7 +4,7 @@ struct strbuf {
        int alloc;
        int len;
        int eof;
-       unsigned char *buf;
+       char *buf;
 };
 
 extern void strbuf_init(struct strbuf *);