Fix warnings

This commit is contained in:
Linquize 2013-11-12 19:44:13 +08:00
parent 6414fd338d
commit fb190bbbd0
4 changed files with 4 additions and 4 deletions

View File

@ -114,7 +114,7 @@ int main(int argc, char *argv[])
rawdata+i);
}
i = eol - rawdata + 1;
i = (int)(eol - rawdata + 1);
line++;
}

View File

@ -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]) == '%') {

View File

@ -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;

View File

@ -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);