summaryrefslogtreecommitdiff
path: root/recorder.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-03-07 14:41:45 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2004-03-07 14:41:45 +0100
commit9c1f56ec71a68e945ff7315ae710f6f9f03e8cc8 (patch)
tree671fff5d1d2d8fa1d42a60e7b8db83eb3be8cac6 /recorder.c
parent2dc3a3d399f7315df034c13fc63dc097683f1f97 (diff)
downloadvdr-9c1f56ec71a68e945ff7315ae710f6f9f03e8cc8.tar.gz
vdr-9c1f56ec71a68e945ff7315ae710f6f9f03e8cc8.tar.bz2
Avoiding too many consecutive "ring buffer overflow" messages
Diffstat (limited to 'recorder.c')
-rw-r--r--recorder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/recorder.c b/recorder.c
index c46c5651..b6b9a240 100644
--- a/recorder.c
+++ b/recorder.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: recorder.c 1.8 2003/10/18 11:35:02 kls Exp $
+ * $Id: recorder.c 1.9 2004/03/07 14:39:25 kls Exp $
*/
#include <stdarg.h>
@@ -102,7 +102,7 @@ void cRecorder::Receive(uchar *Data, int Length)
{
int p = ringBuffer->Put(Data, Length);
if (p != Length && active)
- esyslog("ERROR: ring buffer overflow (%d bytes dropped)", Length - p);
+ ringBuffer->ReportOverflow(Length - p);
}
void cRecorder::Action(void)