From: Mario Di Raimondo Date: Fri, 19 Sep 2014 20:19:03 +0000 (+0200) Subject: typo in a trace message X-Git-Tag: v4.1~1302^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F486%2Fhead;p=thirdparty%2Ftvheadend.git typo in a trace message --- diff --git a/src/epggrab/module/opentv.c b/src/epggrab/module/opentv.c index c01632bbf..7cf463a53 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);