From 7c40f797dc0933627530813dad8b3673098b4250 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Fri, 23 Jan 2015 15:12:47 +0100 Subject: [PATCH] Added a missing 'void' --- recording.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recording.c b/recording.c index 30335e78..7832d0f8 100644 --- a/recording.c +++ b/recording.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * 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" @@ -2741,7 +2741,7 @@ int cIndexFile::Get(uint16_t FileNumber, off_t FileOffset) return -1; } -bool cIndexFile::IsStillRecording() +bool cIndexFile::IsStillRecording(void) { return f >= 0; }