aboutsummaryrefslogtreecommitdiff
path: root/bp.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2021-01-13 19:01:49 -0800
committerBruce Hill <bruce@bruce-hill.com>2021-01-13 19:01:49 -0800
commit43aeadaab8c29351e506c03829c3dc74a9f6b86a (patch)
treeaa8ec115dee11f7a8adcd9f9e1a649bb5e985fb3 /bp.c
parent3443d817150e641221749bf129cc6716e6baaf32 (diff)
Replaced _exit()s with exits()
Diffstat (limited to 'bp.c')
-rw-r--r--bp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bp.c b/bp.c
index bab03ea..57c8135 100644
--- a/bp.c
+++ b/bp.c
@@ -80,7 +80,7 @@ static int process_file(def_t *defs, const char *filename, vm_op_t *pattern, uns
intern_file(f);
match_t *m = match(defs, f, f->contents, pattern, flags);
if (m && print_errors(f, m, print_options) > 0)
- _exit(1);
+ exit(1);
if (m != NULL && m->end > m->start + 1) {
success = 1;