Commit 353560b4 by Sebastian Schuberth

Get rid of a superfluous pointer cast

parent 45e93ef3
......@@ -116,7 +116,7 @@ static int write_deflate(git_filebuf *file, void *source, size_t len)
z_stream *zs = &file->zs;
if (len > 0 || file->flush_mode == Z_FINISH) {
zs->next_in = (void *)source;
zs->next_in = source;
zs->avail_in = len;
do {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment