Commit fb190bbb by Linquize

Fix warnings

parent 6414fd33
......@@ -114,7 +114,7 @@ int main(int argc, char *argv[])
rawdata+i);
}
i = eol - rawdata + 1;
i = (int)(eol - rawdata + 1);
line++;
}
......
......@@ -662,7 +662,7 @@ void gitno_connection_data_free_ptrs(gitno_connection_data *d)
static char* unescape(char *str)
{
int x, y;
int len = strlen(str);
size_t len = strlen(str);
for (x=y=0; str[y]; ++x, ++y) {
if ((str[x] = str[y]) == '%') {
......
......@@ -272,7 +272,7 @@ static int write_object(git_buf *buf, git_packbuilder *pb, git_pobject *po)
git_buf zbuf = GIT_BUF_INIT;
git_otype type;
unsigned char hdr[10];
unsigned int hdr_len;
size_t hdr_len;
unsigned long size;
void *data;
......
......@@ -618,7 +618,7 @@ on_error:
static int filter_refs(git_remote *remote)
{
const git_remote_head **heads;
git_remote_head **heads;
size_t heads_len, i;
git_vector_clear(&remote->refs);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment