From: Peter BaĊĦista Date: Sun, 15 Jan 2023 19:45:25 +0000 (+0100) Subject: grammar: Replace "then" with "than" X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=760f32bf531e15346a40cef864f87edd5bae9681;p=thirdparty%2Ftvheadend.git grammar: Replace "then" with "than" --- diff --git a/src/input/mpegts/linuxdvb/linuxdvb_en50494.c b/src/input/mpegts/linuxdvb/linuxdvb_en50494.c index b51f42de1..19b62eb10 100644 --- a/src/input/mpegts/linuxdvb/linuxdvb_en50494.c +++ b/src/input/mpegts/linuxdvb/linuxdvb_en50494.c @@ -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; }