summaryrefslogtreecommitdiff
path: root/src/stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stream.h')
-rw-r--r--src/stream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stream.h b/src/stream.h
index 5267d90ad..3a7ef9514 100644
--- a/src/stream.h
+++ b/src/stream.h
@@ -42,7 +42,7 @@ GIT_INLINE(int) git_stream_close(git_stream *st)
GIT_INLINE(void) git_stream_free(git_stream *st)
{
- return st->free(st);
+ st->free(st);
}
#endif