diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-11-23 13:35:57 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-11-23 13:56:03 -0500 |
commit | cdbd5e6fcf1f447b515e717f7d7194471ef714a7 (patch) | |
tree | 80e35850febdda9416a1306c8805f2a1da3dabc8 /src/ctx.h | |
parent | 9032d107ab759450c21fea8f82865ff48c743132 (diff) | |
download | bfs-cdbd5e6fcf1f447b515e717f7d7194471ef714a7.tar.xz |
ctx: Switch paths from darray to RESERVE()
Diffstat (limited to 'src/ctx.h')
-rw-r--r-- | src/ctx.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -27,6 +27,9 @@ struct bfs_ctx { /** The root paths. */ const char **paths; + /** The number of root paths. */ + size_t npaths; + /** The main command line expression. */ struct bfs_expr *expr; /** An expression for files to filter out. */ |