Added a missing 'void'

This commit is contained in:
Klaus Schmidinger 2015-01-23 15:12:47 +01:00
parent 189f694710
commit 7c40f797dc
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: recording.c 3.22 2015/01/20 14:53:57 kls Exp $ * $Id: recording.c 3.23 2015/01/23 15:12:47 kls Exp $
*/ */
#include "recording.h" #include "recording.h"
@ -2741,7 +2741,7 @@ int cIndexFile::Get(uint16_t FileNumber, off_t FileOffset)
return -1; return -1;
} }
bool cIndexFile::IsStillRecording() bool cIndexFile::IsStillRecording(void)
{ {
return f >= 0; return f >= 0;
} }