summaryrefslogtreecommitdiff
path: root/tools.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 /tools.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 'tools.c')
-rw-r--r--tools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools.c b/tools.c
index ca16d1b..c15c983 100644
--- a/tools.c
+++ b/tools.c
@@ -114,7 +114,7 @@ static char *htmlcharconv(char *str, struct conv_table *conv, unsigned int elem)
size_t l1 = strlen(conv[i].from);
size_t l2 = strlen(conv[i].to);
if (l2 > l1) {
- esyslog("htmlcharconv(): cannot reallocate string");
+ error("htmlcharconv(): cannot reallocate string");
return str;
}
if (l2 != l1)