From a2fd56ab18cfe1a16372193e8ddfbbe6cadb5a78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Wed, 10 Dec 2014 16:22:50 +0100 Subject: [PATCH] Fix a couple of compiler warnings --- src/stream.h | 2 +- src/transports/http.c | 2 +- 2 files changed, 2 insertions(+), 2 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 diff --git a/src/transports/http.c b/src/transports/http.c index c433a5913..807e08044 100644 --- a/src/transports/http.c +++ b/src/transports/http.c @@ -526,7 +526,7 @@ static int write_chunk(git_stream *io, const char *buffer, size_t len) static int http_connect(http_subtransport *t) { - int flags = 0, error; + int error; if (t->connected && http_should_keep_alive(&t->parser) &&