Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2007-01-18 10:17:28 +0300
committerJunio C Hamano <junkio@cox.net>2007-01-19 01:11:50 +0300
commitb18b00a6612a8da12cb14c232a6ab4184cd262dd (patch)
tree51b9a239b072a6a73087b6a9e4a9fa1fee1c604c /cache.h
parentbb7910319412aea9fecc3625dfcae23da84ee5f1 (diff)
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 fda3f8ec16..e6e19bdef3 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;