summaryrefslogtreecommitdiff
path: root/ringbuffer.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-05-18 08:57:42 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-05-18 08:57:42 +0200
commit7da1dc6e1df129d0c04b3904c97d7544d7a3c88d (patch)
tree040d9d318be255eaaf501e38b80bc0c819100846 /ringbuffer.c
parenta5c2af72778b26b5b51fc9327bb4f5e01b5ed2da (diff)
downloadvdr-7da1dc6e1df129d0c04b3904c97d7544d7a3c88d.tar.gz
vdr-7da1dc6e1df129d0c04b3904c97d7544d7a3c88d.tar.bz2
Fixed some function headers to make them compile with gcc 3.x
Diffstat (limited to 'ringbuffer.c')
-rw-r--r--ringbuffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ringbuffer.c b/ringbuffer.c
index 3918297d..d7562f96 100644
--- a/ringbuffer.c
+++ b/ringbuffer.c
@@ -7,7 +7,7 @@
* Parts of this file were inspired by the 'ringbuffy.c' from the
* LinuxDVB driver (see linuxtv.org).
*
- * $Id: ringbuffer.c 1.7 2002/05/13 16:31:46 kls Exp $
+ * $Id: ringbuffer.c 1.8 2002/05/18 08:54:52 kls Exp $
*/
#include "ringbuffer.h"
@@ -239,7 +239,7 @@ cFrame::~cFrame()
// --- cRingBufferFrame ------------------------------------------------------
-cRingBufferFrame::cRingBufferFrame(int Size, bool Statistics = false)
+cRingBufferFrame::cRingBufferFrame(int Size, bool Statistics)
:cRingBuffer(Size, Statistics)
{
head = NULL;