Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorCarlos Martín Nieto <carlos@cmartin.tk>2011-09-27 22:08:13 +0400
committerCarlos Martín Nieto <carlos@cmartin.tk>2011-09-27 22:08:15 +0400
commita5b0e7f8bc42e3eca72dd82ff000eb6eb92ef897 (patch)
tree36dff9fb1bc57c164023089e366c716f489544e9 /deps
parent887eaf4dc9b6f870b021ad88c881d5fcc6ccf4d1 (diff)
Really fix MSVC
These was left over from the previous PRs. Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Diffstat (limited to 'deps')
-rw-r--r--deps/http-parser/http_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/http-parser/http_parser.c b/deps/http-parser/http_parser.c
index e9d42ce08..432a7c5dc 100644
--- a/deps/http-parser/http_parser.c
+++ b/deps/http-parser/http_parser.c
@@ -368,7 +368,7 @@ size_t http_parser_execute (http_parser *parser,
enum state state;
enum header_states header_state;
uint64_t index = parser->index;
- uint64_t nread = parser->nread;
+ uint32_t nread = parser->nread;
const char *header_field_mark, *header_value_mark, *url_mark;
const char *matcher;