aboutsummaryrefslogtreecommitdiff
path: root/xutil.c
diff options
context:
space:
mode:
Diffstat (limited to 'xutil.c')
-rw-r--r--xutil.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/xutil.c b/xutil.c
index eadd378..26761d7 100644
--- a/xutil.c
+++ b/xutil.c
@@ -104,10 +104,8 @@ xregcomp (regex_t *preg, const char *regex, int cflags)
char *error = xmalloc (error_size);
regerror (rerr, preg, error, error_size);
- fprintf (stderr, "Internal error compiling regex %s: %s\n",
- regex, error);
- free (error);
- exit (1);
+ INTERNAL_ERROR ("compiling regex %s: %s\n",
+ regex, error);
}
}
@@ -122,11 +120,9 @@ xregexec (const regex_t *preg, const char *string,
return rerr;
for (i = 0; i < nmatch; i++) {
- if (pmatch[i].rm_so == -1) {
- fprintf (stderr, "Internal error matching regex against %s: Sub-match %d not found\n",
- string, i);
- exit (1);
- }
+ if (pmatch[i].rm_so == -1)
+ INTERNAL_ERROR ("matching regex against %s: Sub-match %d not found\n",
+ string, i);
}
return 0;