diff options
author | Ramsay Jones <ramsay@ramsay1.demon.co.uk> | 2011-04-07 19:23:40 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-04-11 10:35:25 -0700 |
commit | 2ad9d4cb18bc8debcc9da253425f7a598f40cee2 (patch) | |
tree | 9ee35288bf45792323332011f9d6a1bbd1fa9584 /builtin/index-pack.c | |
parent | f228d1f006241e4085a432799356ebd7b1e86108 (diff) | |
download | git-2ad9d4cb18bc8debcc9da253425f7a598f40cee2.tar.gz git-2ad9d4cb18bc8debcc9da253425f7a598f40cee2.tar.xz |
sparse: Fix an "symbol 'cmd_index_pack' not declared" warning
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/index-pack.c')
-rw-r--r-- | builtin/index-pack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/index-pack.c b/builtin/index-pack.c index 31f001f10..e40451ffb 100644 --- a/builtin/index-pack.c +++ b/builtin/index-pack.c @@ -1,4 +1,4 @@ -#include "cache.h" +#include "builtin.h" #include "delta.h" #include "pack.h" #include "csum-file.h" |