From 75050223976bce6fd87d5fb38fb3b70adf760c3c Mon Sep 17 00:00:00 2001 From: nulltoken Date: Fri, 14 Sep 2012 11:47:43 +0300 Subject: [PATCH] Fix MSVC compilation warnings --- src/repository.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/repository.c b/src/repository.c index 87022523c..20a623a85 100644 --- a/src/repository.c +++ b/src/repository.c @@ -1422,7 +1422,7 @@ int git_repository_hashfile( len = git_futils_filesize(fd); if (len < 0) { - error = len; + error = (int)len; goto cleanup; } @@ -1432,7 +1432,7 @@ int git_repository_hashfile( goto cleanup; } - error = git_odb__hashfd_filtered(out, fd, len, type, &filters); + error = git_odb__hashfd_filtered(out, fd, (size_t)len, type, &filters); cleanup: p_close(fd);