Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
epggrab: fix is_paired() fcn - inverted result, fixes #3227
  • Loading branch information
perexg committed Oct 30, 2015
1 parent 08e57f0 commit 77d14ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/epggrab/channel.c
Expand Up @@ -39,7 +39,7 @@ SKEL_DECLARE(epggrab_channel_skel, epggrab_channel_t);
static inline int
is_paired( epggrab_channel_t *ec )
{
return !ec->only_one || !LIST_FIRST(&ec->channels);
return ec->only_one && LIST_FIRST(&ec->channels);
}

static inline int
Expand Down

0 comments on commit 77d14ab

Please sign in to comment.