diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-05-18 08:48:43 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-05-18 08:48:43 +0200 |
commit | 5b64f51b0b168c709a635c72712374c2a1f47b3f (patch) | |
tree | c91d8764639ed77ca677a20bef6fae34126727fc /ringbuffer.c | |
parent | 6e85bc48b88e9f4d4a14157e990de97c928dc4b7 (diff) | |
download | vdr-5b64f51b0b168c709a635c72712374c2a1f47b3f.tar.gz vdr-5b64f51b0b168c709a635c72712374c2a1f47b3f.tar.bz2 |
Fixed some function headers to make them compile with gcc 3.x
Diffstat (limited to 'ringbuffer.c')
-rw-r--r-- | ringbuffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ringbuffer.c b/ringbuffer.c index 88b515b4..4c7fc27c 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.6 2002/04/19 12:38:44 kls Exp $ + * $Id: ringbuffer.c 1.6.1.1 2002/05/18 08:45:09 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; |