From 30e55d140074749809c419bba2a1a9fd1a4c7de9 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Fri, 25 Mar 2022 13:53:47 -0400 Subject: expr: Store auxilliary data in a union And rename struct expr to bfs_expr. --- ctx.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ctx.h') diff --git a/ctx.h b/ctx.h index 8f8101d..5d0daba 100644 --- a/ctx.h +++ b/ctx.h @@ -62,9 +62,9 @@ struct bfs_ctx { /** The root paths. */ const char **paths; /** The main command line expression. */ - struct expr *expr; + struct bfs_expr *expr; /** An expression for files to filter out. */ - struct expr *exclude; + struct bfs_expr *exclude; /** -mindepth option. */ int mindepth; -- cgit v1.2.3