aboutsummaryrefslogtreecommitdiff
path: root/builtin/pack-objects.c
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2026-02-08 13:32:22 +0100
committerJunio C Hamano <gitster@pobox.com>2026-02-08 15:03:06 -0800
commit10c68d2577b2c4eb4ca9b259a38a67444068e2d9 (patch)
tree81f4624963388c0035c64de5b9678a695e140218 /builtin/pack-objects.c
parent67ad42147a7acc2af6074753ebd03d904476118f (diff)
downloadgit-10c68d2577b2c4eb4ca9b259a38a67444068e2d9.tar.xz
remove duplicate includes
The following command reports that some header files are included twice: $ git grep '#include' '*.c' | sort | uniq -cd Remove the second #include line in each case, as it has no effect. Signed-off-by: René Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/pack-objects.c')
-rw-r--r--builtin/pack-objects.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/builtin/pack-objects.c b/builtin/pack-objects.c
index 5846b6a293..9768c7bf0b 100644
--- a/builtin/pack-objects.c
+++ b/builtin/pack-objects.c
@@ -44,7 +44,6 @@
#include "blob.h"
#include "tree.h"
#include "path-walk.h"
-#include "trace2.h"
/*
* Objects we are going to pack are collected in the `to_pack` structure.