diff options
author | Junio C Hamano <junkio@cox.net> | 2007-01-17 23:17:28 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-18 14:11:50 -0800 |
commit | b18b00a6612a8da12cb14c232a6ab4184cd262dd (patch) | |
tree | 51b9a239b072a6a73087b6a9e4a9fa1fee1c604c /cache.h | |
parent | bb7910319412aea9fecc3625dfcae23da84ee5f1 (diff) | |
download | git-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |