summaryrefslogtreecommitdiffstats
path: root/src/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse.c')
-rw-r--r--src/parse.c4
1 files changed, 2 insertions, 2 deletions
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;