From f419834747e919168fee00b25c486fed4103c88d Mon Sep 17 00:00:00 2001 From: Mario Di Raimondo Date: Fri, 19 Sep 2014 22:19:03 +0200 Subject: [PATCH] typo in a trace message --- src/epggrab/module/opentv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/epggrab/module/opentv.c b/src/epggrab/module/opentv.c index c01632bb..7cf463a5 100644 --- a/src/epggrab/module/opentv.c +++ b/src/epggrab/module/opentv.c @@ -272,7 +272,7 @@ static void *_opentv_apply_pattern_list(char *buf, size_t size_buf, const char * int size; if (!l) return NULL; - /* search and report the first matching */ + /* search and report the first match */ TAILQ_FOREACH(p, l, p_links) if (p->compiled && !regexec(p->compiled, text, 2, match, 0) && match[1].rm_so != -1) { size = MIN(match[1].rm_eo - match[1].rm_so, size_buf - 1);