diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-01-07 17:10:02 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-01-07 17:10:02 +0100 |
commit | 845c9315e65df0fb9ae398b1e3459ec99d063e6f (patch) | |
tree | 5909baefe795f0a37c293f6c82ab18f38bb49172 /dvbapi.c | |
parent | 76d2cd9f4be6f5db824a101ffd02fcac70665175 (diff) | |
download | vdr-845c9315e65df0fb9ae398b1e3459ec99d063e6f.tar.gz vdr-845c9315e65df0fb9ae398b1e3459ec99d063e6f.tar.bz2 |
Printing channel number in 'not synced' error message
Diffstat (limited to 'dvbapi.c')
-rw-r--r-- | dvbapi.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbapi.c 1.46 2001/01/07 17:02:38 kls Exp $ + * $Id: dvbapi.c 1.47 2001/01/07 17:10:02 kls Exp $ */ #include "dvbapi.h" @@ -2201,7 +2201,7 @@ bool cDvbApi::SetChannel(int ChannelNumber, int FrequencyMHz, char Polarization, } return true; } - esyslog(LOG_ERR, "ERROR: channel not sync'ed (front.sync=%X)!", front.sync); + esyslog(LOG_ERR, "ERROR: channel %d not sync'ed (front.sync=%X)!", ChannelNumber, front.sync); } return false; } |