Since the transport-helper does not use recursive mutexes or ask the number of cores, it does not require any declarations from the thread-utils lib. Removing the unnecessary #include avoids false positives from "make CHECK_HEADER_DEPENDENCIES=1". Signed-off-by: Jonathan Nieder <jrnieder@xxxxxxxxx> --- The #include directive in question was added in 7851b1e60 (remote-fd/ext: finishing touches after code review, 2010-11-17), at the same times as the necessary #include for <pthread.h>. This patch seems to work for me, but I wouldn't be surprised if to be missing something. transport-helper.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/transport-helper.c b/transport-helper.c index 3a50856..7c99051 100644 --- a/transport-helper.c +++ b/transport-helper.c @@ -11,7 +11,6 @@ #ifndef NO_PTHREADS #include <pthread.h> -#include "thread-utils.h" #endif static int debug; -- 1.7.2.4 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html