summaryrefslogtreecommitdiff
path: root/regexp.c
diff options
context:
space:
mode:
authorMatti Lehtimäki <matti.lehtimaki@gmail.com>2012-05-05 21:04:06 +0300
committerMatti Lehtimäki <matti.lehtimaki@gmail.com>2012-05-05 21:04:06 +0300
commit61b085f1d12ef86807f779f57671fa1e7a5a14c0 (patch)
treedda0a7b329fe08754784e8ca1da1f03db63839c6 /regexp.c
parentbc5ae964c6cf9b24aab49383637894b2e88651b7 (diff)
downloadvdr-plugin-epgfixer-61b085f1d12ef86807f779f57671fa1e7a5a14c0.tar.gz
vdr-plugin-epgfixer-61b085f1d12ef86807f779f57671fa1e7a5a14c0.tar.bz2
Improve error logging. Make character list for menu editing modifiable through translation files. New version number.v0.1.0
Diffstat (limited to 'regexp.c')
-rw-r--r--regexp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/regexp.c b/regexp.c
index 57db548..dd6856c 100644
--- a/regexp.c
+++ b/regexp.c
@@ -38,13 +38,13 @@ void cRegexp::Compile()
int erroffset;
re = pcre_compile(regexp, 0, &error, &erroffset, NULL);
if (error) {
- esyslog("PCRE compile error: %s at offset %i", error, erroffset);
+ error("PCRE compile error: %s at offset %i", error, erroffset);
enabled = false;
}
else {
sd = pcre_study(re, 0, (const char **)&error);
if (error)
- esyslog("PCRE study error: %s", error);
+ error("PCRE study error: %s", error);
}
}