diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-07-28 12:48:44 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-07-28 12:48:44 +0200 |
commit | 6ac15dd3fcf8b3a49c72d865e67f3496c8213a35 (patch) | |
tree | 5fe502942d3f6dae3f566aced9643edb395ec983 | |
parent | a4246cfd9aa7f3c5a02145815a1e26dcace09327 (diff) | |
download | vdr-6ac15dd3fcf8b3a49c72d865e67f3496c8213a35.tar.gz vdr-6ac15dd3fcf8b3a49c72d865e67f3496c8213a35.tar.bz2 |
Added a missing #include
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | ringbuffer.c | 3 |
3 files changed, 4 insertions, 1 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 25f8c117..716d88d9 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -44,6 +44,7 @@ Martin Hammerschmid <martin@hammerschmid.com> for suggesting to use the "Blue" button in the main menu to resume replay for implementing pege up/down with the "Left" and "Right" keys for detecting a deadlock when switching channels via Schedule/Now|Next/Switch + for adding a missing #include to ringbuffer.c Bastian Guse <bastian@nocopy.de> for writing the FORMATS entry for timers.conf @@ -1388,3 +1388,4 @@ Video Disk Recorder Revision History made with VFAT enabled (thanks to Christian Rienecker). - Added some missing teletext PIDs (thanks to Joerg Riechardt). - Fixed PID handling for cReceiver. +- Added a missing #include to ringbuffer.c (thanks to Martin Hammerschmid). diff --git a/ringbuffer.c b/ringbuffer.c index 421f19f0..b57b23e2 100644 --- a/ringbuffer.c +++ b/ringbuffer.c @@ -7,10 +7,11 @@ * Parts of this file were inspired by the 'ringbuffy.c' from the * LinuxDVB driver (see linuxtv.org). * - * $Id: ringbuffer.c 1.9 2002/06/16 11:24:40 kls Exp $ + * $Id: ringbuffer.c 1.10 2002/07/28 12:47:32 kls Exp $ */ #include "ringbuffer.h" +#include <stdlib.h> #include <unistd.h> #include "tools.h" |