diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2020-06-16 10:44:48 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2020-06-16 10:44:48 -0400 |
commit | 0da9ac5a1093adce3e05ae5580d611de7558d08a (patch) | |
tree | 9deea4d1fa1a69b224c05a42a25f78df14acfa5b | |
parent | 9b76969b3c293d96ef45442682fc5c72e7864a64 (diff) | |
download | bfs-0da9ac5a1093adce3e05ae5580d611de7558d08a.tar.xz |
eval: Fix an assertion failure with -D search -s
-rw-r--r-- | eval.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1286,6 +1286,7 @@ static void dump_bftw_flags(enum bftw_flags flags) { DEBUG_FLAG(flags, BFTW_DETECT_CYCLES); DEBUG_FLAG(flags, BFTW_MOUNT); DEBUG_FLAG(flags, BFTW_XDEV); + DEBUG_FLAG(flags, BFTW_SORT); assert(!flags); } |