summaryrefslogtreecommitdiffstats
path: root/expr.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2022-02-21 15:25:27 -0500
committerTavian Barnes <tavianator@tavianator.com>2022-02-21 16:12:07 -0500
commit9754c1ab7ceebd41ffda5f8004e562f18006dc6c (patch)
treebe623cc6de520ed5578458e58a9d774c75b0f296 /expr.h
parent5a3b68d37cdc1e60802a5963340be5c5705d1f5d (diff)
downloadbfs-9754c1ab7ceebd41ffda5f8004e562f18006dc6c.tar.xz
regex: Wrap the POSIX API in a facade
Diffstat (limited to 'expr.h')
-rw-r--r--expr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/expr.h b/expr.h
index 6f0ebec..a660a6d 100644
--- a/expr.h
+++ b/expr.h
@@ -159,7 +159,7 @@ struct expr {
CFILE *cfile;
/** Optional compiled regex. */
- regex_t *regex;
+ struct bfs_regex *regex;
/** Optional exec command. */
struct bfs_exec *execbuf;