diff options
| author | Russell Belfer <rb@github.com> | 2012-08-23 09:20:17 -0700 |
|---|---|---|
| committer | Russell Belfer <rb@github.com> | 2012-08-23 09:20:17 -0700 |
| commit | e9ca852e4d77e1b1723a2dceddfa2037677e2fb4 (patch) | |
| tree | bb1d939d73ce2c2bd9d3001c643bcf28602a8271 /src/transports | |
| parent | 85bd17462662905dfdf9247b262480280a616ad4 (diff) | |
| download | libgit2-e9ca852e4d77e1b1723a2dceddfa2037677e2fb4.tar.gz | |
Fix warnings and merge issues on Win64
Diffstat (limited to 'src/transports')
| -rw-r--r-- | src/transports/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transports/http.c b/src/transports/http.c index 85fec413a..ce382c3ad 100644 --- a/src/transports/http.c +++ b/src/transports/http.c @@ -233,7 +233,7 @@ static int http_recv_cb(gitno_buffer *buf) if (t->error < 0) return t->error; - return buf->offset - old_len; + return (int)(buf->offset - old_len); } /* Set up the gitno_buffer so calling gitno_recv() grabs data from the HTTP response */ |
