From 725c64a08a32e1c20300e77d32f997d3a3ea226a Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sat, 29 May 2021 10:31:52 -0700 Subject: [PATCH] remove useless #include of config.h The generated config.h only contains a number of #defines, so its inclusion at the end of a file has no effect. All code following this line was removed in 7cc812f5c1b64832a0324a293cc8968ba044e0a4 which should have also removed this line but did not. --- lib/ingraphs/ingraphs.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/ingraphs/ingraphs.c b/lib/ingraphs/ingraphs.c index bcddc0e0c..1c959cb60 100644 --- a/lib/ingraphs/ingraphs.c +++ b/lib/ingraphs/ingraphs.c @@ -211,5 +211,3 @@ char *fileName(ingraph_state * sp) } else return ""; } - -#include "config.h" -- 2.50.1