diff options
author | Elijah Newren <newren@gmail.com> | 2023-05-16 08:34:02 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-06-21 22:39:54 +0200 |
commit | 88e4e18325d6ddc3d21ffd9eda8259566443a7f7 (patch) | |
tree | f1cac705188e7eaeff0cc05d51b0cd8f98d22246 /builtin/verify-pack.c | |
parent | list-objects-filter-options.h: remove unneccessary include (diff) | |
download | git-88e4e18325d6ddc3d21ffd9eda8259566443a7f7.tar.xz git-88e4e18325d6ddc3d21ffd9eda8259566443a7f7.zip |
builtin.h: remove unneccessary includes
This also made it clear that a few .c files under builtin/ were
depending upon some headers but had forgotten to #include them. Add the
missing direct includes while at it.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/verify-pack.c')
-rw-r--r-- | builtin/verify-pack.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/verify-pack.c b/builtin/verify-pack.c index aba92cf8af..011dddd2dc 100644 --- a/builtin/verify-pack.c +++ b/builtin/verify-pack.c @@ -3,6 +3,7 @@ #include "gettext.h" #include "run-command.h" #include "parse-options.h" +#include "strbuf.h" #define VERIFY_PACK_VERBOSE 01 #define VERIFY_PACK_STAT_ONLY 02 |