From 10c68d2577b2c4eb4ca9b259a38a67444068e2d9 Mon Sep 17 00:00:00 2001 From: René Scharfe Date: Sun, 8 Feb 2026 13:32:22 +0100 Subject: remove duplicate includes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Signed-off-by: Junio C Hamano --- builtin/pack-objects.c | 1 - 1 file changed, 1 deletion(-) (limited to 'builtin/pack-objects.c') 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. -- cgit v1.3-5-g9baa