mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed a compiler warning
This commit is contained in:
parent
45fde332a0
commit
7ade54dfd7
@ -2772,6 +2772,7 @@ Winfried K
|
|||||||
cFileName::SetOffset()
|
cFileName::SetOffset()
|
||||||
for adding initialization of cDvbFrontend::frontendInfo
|
for adding initialization of cDvbFrontend::frontendInfo
|
||||||
for improving handling missing VDRPluginDestroyer()
|
for improving handling missing VDRPluginDestroyer()
|
||||||
|
for fixing a compiler warning
|
||||||
|
|
||||||
Hans-Werner Hilse <hilse@web.de>
|
Hans-Werner Hilse <hilse@web.de>
|
||||||
for adding the command line option --userdump to enable core dumps in case VDR
|
for adding the command line option --userdump to enable core dumps in case VDR
|
||||||
|
3
HISTORY
3
HISTORY
@ -9536,7 +9536,7 @@ Video Disk Recorder Revision History
|
|||||||
cDvbTuner::GetSignalStats() to avoid problems with drivers that don't do this
|
cDvbTuner::GetSignalStats() to avoid problems with drivers that don't do this
|
||||||
(thanks to Helmut Binder).
|
(thanks to Helmut Binder).
|
||||||
|
|
||||||
2020-12-17:
|
2020-12-18:
|
||||||
|
|
||||||
- Fixed multiple recording entries in case a recording is started during the initial
|
- Fixed multiple recording entries in case a recording is started during the initial
|
||||||
reading of the video directory (reported by Claus Muus).
|
reading of the video directory (reported by Claus Muus).
|
||||||
@ -9559,3 +9559,4 @@ Video Disk Recorder Revision History
|
|||||||
- Improved handling missing VDRPluginDestroyer() (thanks to Winfried Köhler).
|
- Improved handling missing VDRPluginDestroyer() (thanks to Winfried Köhler).
|
||||||
- Fixed initializing tmpbuf in ExtendedEventDescriptors::getText() (thanks to Helmut
|
- Fixed initializing tmpbuf in ExtendedEventDescriptors::getText() (thanks to Helmut
|
||||||
Binder).
|
Binder).
|
||||||
|
- Fixed a compiler warning (thanks to Winfried Köhler).
|
||||||
|
4
dvbspu.c
4
dvbspu.c
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
* parts of this file are derived from the OMS program.
|
* parts of this file are derived from the OMS program.
|
||||||
*
|
*
|
||||||
* $Id: dvbspu.c 2.11 2013/02/22 15:25:16 kls Exp $
|
* $Id: dvbspu.c 4.1 2020/12/18 14:51:57 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "dvbspu.h"
|
#include "dvbspu.h"
|
||||||
@ -38,7 +38,7 @@
|
|||||||
#ifdef SPUDEBUG
|
#ifdef SPUDEBUG
|
||||||
#define DEBUG(format, args...) printf (format, ## args)
|
#define DEBUG(format, args...) printf (format, ## args)
|
||||||
#else
|
#else
|
||||||
#define DEBUG(format, args...)
|
#define DEBUG(format, args...) void()
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// --- cDvbSpuPalette---------------------------------------------------------
|
// --- cDvbSpuPalette---------------------------------------------------------
|
||||||
|
4
pat.c
4
pat.c
@ -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: 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"
|
#include "pat.h"
|
||||||
@ -334,7 +334,7 @@ cPmtSidEntry::cPmtSidEntry(int Sid, int Pid, cPmtPidEntry *PidEntry)
|
|||||||
#ifdef DEBUG_PAT_PMT
|
#ifdef DEBUG_PAT_PMT
|
||||||
#define DBGLOG(a...) { cString s = cString::sprintf(a); fprintf(stderr, "%s\n", *s); dsyslog("%s", *s); }
|
#define DBGLOG(a...) { cString s = cString::sprintf(a); fprintf(stderr, "%s\n", *s); dsyslog("%s", *s); }
|
||||||
#else
|
#else
|
||||||
#define DBGLOG(a...)
|
#define DBGLOG(a...) void()
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
cPatFilter::cPatFilter(void)
|
cPatFilter::cPatFilter(void)
|
||||||
|
Loading…
Reference in New Issue
Block a user