summaryrefslogtreecommitdiff
path: root/pat.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2020-12-18 14:51:57 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2020-12-18 14:51:57 +0100
commit7ade54dfd75110cbca746af279c76ddedbcfcb77 (patch)
treee043074b012b565cf1e2ef8cbf51b12100c1e3ab /pat.c
parent45fde332a02b1ab11546f1663c63b9b3f34ea1a7 (diff)
downloadvdr-7ade54dfd75110cbca746af279c76ddedbcfcb77.tar.gz
vdr-7ade54dfd75110cbca746af279c76ddedbcfcb77.tar.bz2
Fixed a compiler warning
Diffstat (limited to 'pat.c')
-rw-r--r--pat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pat.c b/pat.c
index 4b320245..72164c49 100644
--- a/pat.c
+++ b/pat.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: pat.c 4.8 2020/12/12 10:31:52 kls Exp $
+ * $Id: pat.c 4.9 2020/12/18 14:51:57 kls Exp $
*/
#include "pat.h"
@@ -334,7 +334,7 @@ cPmtSidEntry::cPmtSidEntry(int Sid, int Pid, cPmtPidEntry *PidEntry)
#ifdef DEBUG_PAT_PMT
#define DBGLOG(a...) { cString s = cString::sprintf(a); fprintf(stderr, "%s\n", *s); dsyslog("%s", *s); }
#else
-#define DBGLOG(a...)
+#define DBGLOG(a...) void()
#endif
cPatFilter::cPatFilter(void)