]> asedeno.scripts.mit.edu Git - git.git/commitdiff
Use off_t for index and pack file lengths.
authorShawn O. Pearce <spearce@spearce.org>
Sat, 23 Dec 2006 07:33:47 +0000 (02:33 -0500)
committerJunio C Hamano <junkio@cox.net>
Fri, 29 Dec 2006 19:36:44 +0000 (11:36 -0800)
Since the index_size and pack_size members of struct packed_git
are the lengths of those corresponding files we should use the
off_t size of the operating system to store these file lengths,
rather than an unsigned long.  This would help in the future should
we ever resurrect Junio's 64 bit index implementation.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
cache.h

diff --git a/cache.h b/cache.h
index ae7bceca502f33723a5ff5c051b6c8167835c6b8..cc872440ef85d9bead5df72879eba2bfe0b84347 100644 (file)
--- a/cache.h
+++ b/cache.h
@@ -347,10 +347,10 @@ struct pack_window {
 
 extern struct packed_git {
        struct packed_git *next;
-       unsigned long index_size;
-       unsigned long pack_size;
        struct pack_window *windows;
        unsigned int *index_base;
+       off_t index_size;
+       off_t pack_size;
        int pack_local;
        unsigned char sha1[20];
        /* something like ".git/objects/pack/xxxxx.pack" */