Commit bdb94c21 by nulltoken

Fix MSVC compilation warnings

parent 71131b55
...@@ -201,7 +201,7 @@ static void hash_header(git_hash_ctx *ctx, git_off_t len, git_otype type) ...@@ -201,7 +201,7 @@ static void hash_header(git_hash_ctx *ctx, git_off_t len, git_otype type)
char buffer[64]; char buffer[64];
size_t hdrlen; size_t hdrlen;
hdrlen = git_odb__format_object_header(buffer, sizeof(buffer), len, type); hdrlen = git_odb__format_object_header(buffer, sizeof(buffer), (size_t)len, type);
git_hash_update(ctx, buffer, hdrlen); git_hash_update(ctx, buffer, hdrlen);
} }
...@@ -269,11 +269,11 @@ static int crc_object(uint32_t *crc_out, git_mwindow_file *mwf, git_off_t start, ...@@ -269,11 +269,11 @@ static int crc_object(uint32_t *crc_out, git_mwindow_file *mwf, git_off_t start,
crc = crc32(0L, Z_NULL, 0); crc = crc32(0L, Z_NULL, 0);
while (size) { while (size) {
ptr = git_mwindow_open(mwf, &w, start, size, &left); ptr = git_mwindow_open(mwf, &w, start, (size_t)size, &left);
if (ptr == NULL) if (ptr == NULL)
return -1; return -1;
len = min(left, size); len = min(left, (size_t)size);
crc = crc32(crc, ptr, len); crc = crc32(crc, ptr, len);
size -= len; size -= len;
start += len; start += len;
......
...@@ -59,7 +59,6 @@ static int do_lstat( ...@@ -59,7 +59,6 @@ static int do_lstat(
{ {
WIN32_FILE_ATTRIBUTE_DATA fdata; WIN32_FILE_ATTRIBUTE_DATA fdata;
wchar_t fbuf[GIT_WIN_PATH], lastch; wchar_t fbuf[GIT_WIN_PATH], lastch;
DWORD last_error;
int flen; int flen;
flen = git__utf8_to_16(fbuf, GIT_WIN_PATH, file_name); flen = git__utf8_to_16(fbuf, GIT_WIN_PATH, file_name);
......
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