From 9862270a25aac69833d6ae3239e88fd9be69f6d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Tue, 22 Apr 2008 20:32:18 +0000 Subject: [PATCH] Shorter FEC status message. --- dvb_support.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dvb_support.c b/dvb_support.c index 5313623c..b828e64a 100644 --- a/dvb_support.c +++ b/dvb_support.c @@ -298,9 +298,9 @@ dvb_mux_status(th_dvb_mux_instance_t *tdmi) vv /= TDMI_FEC_ERR_HISTOGRAM_SIZE; if(v == TDMI_FEC_ERR_HISTOGRAM_SIZE) - txt = "Constant high FEC rate"; + txt = "Constant FEC"; else if(v > 0) - txt = "Bursty FEC rate"; + txt = "Bursty FEC"; return txt; }