diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pacman/util.c b/src/pacman/util.c index 757244a5..a8ad0059 100644 --- a/src/pacman/util.c +++ b/src/pacman/util.c @@ -38,6 +38,7 @@ #include "util.h" #include "list.h" #include "conf.h" +#include "log.h" extern int maxcols; extern config_t *config; @@ -195,7 +196,7 @@ int reg_match(char *string, char *pattern) regex_t reg; if(regcomp(®, pattern, REG_EXTENDED | REG_NOSUB | REG_ICASE) != 0) { - fprintf(stderr, "error: %s is not a valid regular expression.\n", pattern); + ERR(NL, "%s is not a valid regular expression.\n", pattern); return(-1); } result = regexec(®, string, 0, 0, 0); |