vdr/skincurses-log-errors.patch
Martin Gansser 1b915afdbe Dropped dvbsddevice and rcu plugins
SPEC File cleanup
Dropped patch9  vdr-1.7.29-hlcutter-0.2.3.diff
Dropped patch14 0001-Fix-build-with-systemd-230.patch
Dropped patch19 vdr-2.2.0-menuselection.patch
Dropped Patch20 %{name}-2.3.2-unsignedtosigned.diff
Dropped Patch21 %{name}-gcc7-fix.patch
Add %{name}-2.4.0-01-fix-svdrp-modt-recflag.diff
Add skincurses-log-errors.patch
Add 12_osdbase-maxitems.patch
2018-04-23 18:53:05 +02:00

21 lines
609 B
Diff

Description: Log an error message when skincures can't initialize the screen
Author: Tobias Grimm <etobi@debian.org>
--- a/PLUGINS/src/skincurses/skincurses.c
+++ b/PLUGINS/src/skincurses/skincurses.c
@@ -11,6 +11,7 @@
#include <vdr/plugin.h>
#include <vdr/skins.h>
#include <vdr/videodir.h>
+#include <vdr/tools.h>
static const char *VERSION = "2.4.0";
static const char *DESCRIPTION = trNOOP("A text only skin");
@@ -833,6 +834,7 @@
ScOsdHeight = w->_maxy - w->_begy + 1;
return true;
}
+ esyslog("skincurses: unable to initialize curses screen");
return false;
}