From 8f5850c6f4eb0213ef74280903e009634e4fce2a Mon Sep 17 00:00:00 2001 From: Hartmut Brandt Date: Mon, 11 Apr 2005 07:26:21 +0000 Subject: [PATCH] Remove the call to Parse_Init() - there is no need to initialize a static variable to NULL. Forgot this in the previous commit to parse.[ch]. --- usr.bin/make/main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c index 850b64b1d70..1e208134c46 100644 --- a/usr.bin/make/main.c +++ b/usr.bin/make/main.c @@ -618,8 +618,6 @@ main(int argc, char **argv) */ Dir_Init(); /* Initialize directory structures so -I flags * can be processed correctly */ - Parse_Init(); /* Need to initialize the paths of #include - * directories */ Var_Init(); /* As well as the lists of variables for * parsing arguments */ str_init();