aboutsummaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2007-01-17 23:17:28 -0800
committerJunio C Hamano <junkio@cox.net>2007-01-18 14:11:50 -0800
commitb18b00a6612a8da12cb14c232a6ab4184cd262dd (patch)
tree51b9a239b072a6a73087b6a9e4a9fa1fee1c604c /cache.h
parentbb7910319412aea9fecc3625dfcae23da84ee5f1 (diff)
downloadgit-b18b00a6612a8da12cb14c232a6ab4184cd262dd.tar.gz
git-b18b00a6612a8da12cb14c232a6ab4184cd262dd.tar.xz
Use fixed-size integers for .idx file I/O
This attempts to finish what Simon started in the previous commit. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cache.h b/cache.h
index fda3f8ec1..e6e19bdef 100644
--- a/cache.h
+++ b/cache.h
@@ -351,7 +351,7 @@ struct pack_window {
extern struct packed_git {
struct packed_git *next;
struct pack_window *windows;
- unsigned int *index_base;
+ uint32_t *index_base;
off_t index_size;
off_t pack_size;
int pack_fd;