From: Jaroslav Kysela Date: Tue, 30 Aug 2016 07:44:03 +0000 (+0200) Subject: idnode: fix typo X-Git-Tag: v4.2.1~333 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b726011d87a3448d1f260c80e931c6c553d0a6fb;p=thirdparty%2Ftvheadend.git idnode: fix typo --- diff --git a/src/idnode.c b/src/idnode.c index 7ddfaf1f0..b85618fee 100644 --- a/src/idnode.c +++ b/src/idnode.c @@ -139,7 +139,7 @@ idnode_insert(idnode_t *in, const char *uuid, const idclass_t *class, int flags) /* Register the class */ in->in_domain = idclass_find_domain(class); if (in->in_domain == NULL) { - tvherror(LS_IDNODE, "classs '%s' is not registered", class->ic_class); + tvherror(LS_IDNODE, "class '%s' is not registered", class->ic_class); abort(); } c = RB_INSERT_SORTED(in->in_domain, in, in_domain_link, in_cmp);