mirror of
https://git.proxmox.com/git/libgit2
synced 2026-01-05 00:51:22 +00:00
Fix a couple of compiler warnings
This commit is contained in:
parent
49ae22baac
commit
a2fd56ab18
@ -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
|
||||
|
||||
@ -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) &&
|
||||
|
||||
Loading…
Reference in New Issue
Block a user