From 096884c4fe1fb922eab2797d4583ca2ae8ae2600 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sun, 6 Nov 2022 16:22:57 -0500 Subject: config: Split out some of util.h into a new header --- src/parse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/parse.c') diff --git a/src/parse.c b/src/parse.c index 15feac1..2fe3473 100644 --- a/src/parse.c +++ b/src/parse.c @@ -22,9 +22,9 @@ */ #include "parse.h" -#include "bfs.h" #include "bftw.h" #include "color.h" +#include "config.h" #include "ctx.h" #include "darray.h" #include "diag.h" @@ -3852,7 +3852,7 @@ struct bfs_ctx *bfs_parse_cmdline(int argc, char *argv[]) { goto fail; } - static char* default_argv[] = {"bfs", NULL}; + static char* default_argv[] = {BFS_COMMAND, NULL}; if (argc < 1) { argc = 1; argv = default_argv; -- cgit v1.2.3