mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-02 18:57:46 +00:00
Fix warnings
This commit is contained in:
parent
6414fd338d
commit
fb190bbbd0
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user