]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
mpegts input: fix the compilation error, fixes #5492
authorJaroslav Kysela <perex@perex.cz>
Thu, 14 Feb 2019 12:44:52 +0000 (13:44 +0100)
committerJaroslav Kysela <perex@perex.cz>
Thu, 14 Feb 2019 12:44:52 +0000 (13:44 +0100)
src/input/mpegts/mpegts_input.c

index df5ab18c7ac7aea133302968cefb49634975c9e7..0bb4c22dfa52a267a63679c8cc4239c7a2337abc 100644 (file)
@@ -465,7 +465,7 @@ int
 mpegts_mps_cmp ( mpegts_pid_sub_t *a, mpegts_pid_sub_t *b )
 {
   const int mask = MPS_SERVICE;
-  if ((a->mps_type & mask) != (b->mps_type & mask)) {
+  if ((a->mps_type & mask) != (b->mps_type & mask))
     return (a->mps_type & mask) ? 1 : -1;
   if (a->mps_owner < b->mps_owner) return -1;
   if (a->mps_owner > b->mps_owner) return 1;