diff options
author | Elijah Newren <newren@gmail.com> | 2023-04-11 09:41:54 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-04-11 17:52:10 +0200 |
commit | b6fdc44c8441d04c6659252cdf9adae240339e17 (patch) | |
tree | 6ed97662b236d5f8eb906f788c1228979a3c3d29 /pack-check.c | |
parent | object-file.h: move declarations for object-file.c functions from cache.h (diff) | |
download | git-b6fdc44c8441d04c6659252cdf9adae240339e17.tar.xz git-b6fdc44c8441d04c6659252cdf9adae240339e17.zip |
treewide: remove cache.h inclusion due to object-file.h changes
Signed-off-by: Elijah Newren <newren@gmail.com>
Acked-by: Calvin Wan <calvinwan@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pack-check.c')
-rw-r--r-- | pack-check.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pack-check.c b/pack-check.c index 40d88bc5eb..049f2f0bfc 100644 --- a/pack-check.c +++ b/pack-check.c @@ -1,4 +1,4 @@ -#include "cache.h" +#include "git-compat-util.h" #include "environment.h" #include "hex.h" #include "repository.h" |