]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
typo in a trace message 486/head
authorMario Di Raimondo <mario.diraimondo@gmail.com>
Fri, 19 Sep 2014 20:19:03 +0000 (22:19 +0200)
committerMario Di Raimondo <mario.diraimondo@gmail.com>
Fri, 19 Sep 2014 20:19:03 +0000 (22:19 +0200)
src/epggrab/module/opentv.c

index c01632bbfbd3497bb1dff747382454500081d248..7cf463a53616481b6e527599cbdc8df6a83e7c19 100644 (file)
@@ -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);