diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2011-12-10 15:01:23 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2011-12-10 15:01:23 +0100 |
commit | 8a49851b05507c61ca8fd1588e5bd334b021b7c1 (patch) | |
tree | fd11954b349a27a56cc0d59d15781b01f64bebd0 /dvbdevice.c | |
parent | b25efc415e04afc36e10c88cb9b8668a84cf1bb7 (diff) | |
download | vdr-8a49851b05507c61ca8fd1588e5bd334b021b7c1.tar.gz vdr-8a49851b05507c61ca8fd1588e5bd334b021b7c1.tar.bz2 |
Added HasSnr to the DEBUG_SIGNALQUALITY output in cDvbTuner::GetSignalQuality()
Diffstat (limited to 'dvbdevice.c')
-rw-r--r-- | dvbdevice.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dvbdevice.c b/dvbdevice.c index 351609f8..d69a1340 100644 --- a/dvbdevice.c +++ b/dvbdevice.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.c 2.49 2011/12/06 17:38:18 kls Exp $ + * $Id: dvbdevice.c 2.50 2011/12/10 14:59:34 kls Exp $ */ #include "dvbdevice.h" @@ -618,7 +618,7 @@ int cDvbTuner::GetSignalQuality(void) const if (q > 100) q = 100; #ifdef DEBUG_SIGNALQUALITY - fprintf(stderr, "FE %d/%d: %08X Q = %04X %04X %5d %5d %3d%%\n", adapter, frontend, subsystemId, MaxSnr, Snr, HasBer ? int(Ber) : -1, HasUnc ? int(Unc) : -1, q); + fprintf(stderr, "FE %d/%d: %08X Q = %04X %04X %d %5d %5d %3d%%\n", adapter, frontend, subsystemId, MaxSnr, Snr, HasSnr, HasBer ? int(Ber) : -1, HasUnc ? int(Unc) : -1, q); #endif return q; } |