]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
grammar: Replace "then" with "than"
authorPeter Bašista <pbasista@gmail.com>
Sun, 15 Jan 2023 19:45:25 +0000 (20:45 +0100)
committerFlole998 <Flole998@users.noreply.github.com>
Tue, 17 Jan 2023 02:32:34 +0000 (03:32 +0100)
src/input/mpegts/linuxdvb/linuxdvb_en50494.c

index b51f42de1cc9a2adaca326cfe47d435aef14cd99..19b62eb103f9c1026619bb7d5551f7067fc19dcf 100644 (file)
@@ -224,7 +224,7 @@ linuxdvb_en50494_freq0
   /* transponder value - t */
   *t = round((((freq / 1000) + 2 + le->le_frequency) / 4) - 350);
   if (*t >= 1023) {
-    tvherror(LS_EN50494, "transponder value bigger then 1023 for freq %d (%d)", freq, le->le_frequency);
+    tvherror(LS_EN50494, "transponder value bigger than 1023 for freq %d (%d)", freq, le->le_frequency);
     return -1;
   }
 
@@ -240,7 +240,7 @@ linuxdvb_en50607_freq0
   /* transponder value - t */
   *t = round((double)freq / 1000) - 100;
   if (*t > 2047) {
-    tvherror(LS_EN50494, "transponder value bigger then 2047 for freq %d (%d)", freq, le->le_frequency);
+    tvherror(LS_EN50494, "transponder value bigger than 2047 for freq %d (%d)", freq, le->le_frequency);
     return -1;
   }