From 4c9a39732942f763191d47be51b414bbc81bbbfd Mon Sep 17 00:00:00 2001 From: Ramsay Jones Date: Thu, 4 Jun 2009 17:13:49 +0100 Subject: [PATCH] Improve the portability of the gitfo_cache code (to 64-bit systems) This supresses some "conversion from 'size_t' to 'unsigned int', possible loss of data" warning messages from the MS Visual C/C++ compiler with -Wp64. Signed-off-by: Ramsay Jones Signed-off-by: Andreas Ericsson --- src/fileops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fileops.c b/src/fileops.c index 3d35c193f..5de89cbd8 100644 --- a/src/fileops.c +++ b/src/fileops.c @@ -133,7 +133,7 @@ void gitfo_free_map(git_map *out) /* cached diskio */ struct gitfo_cache { git_file fd; - unsigned int cache_size, pos; + size_t cache_size, pos; unsigned char *cache; };