diff -Nru vdr-plugin-vnsiserver-1.3.1/debian/changelog vdr-plugin-vnsiserver-1.3.1/debian/changelog --- vdr-plugin-vnsiserver-1.3.1/debian/changelog 2015-11-01 19:05:16.000000000 +0000 +++ vdr-plugin-vnsiserver-1.3.1/debian/changelog 2016-01-23 20:54:39.000000000 +0000 @@ -1,3 +1,9 @@ +vdr-plugin-vnsiserver (1:1.3.1-2) unstable; urgency=medium + + * Fixing FTBFS with GCC 6 (Closes: #811949) + + -- Tobias Grimm Sat, 23 Jan 2016 21:54:30 +0100 + vdr-plugin-vnsiserver (1:1.3.1-1) unstable; urgency=medium * Fixed Vcs-Git to point to anonscm.debian.org diff -Nru vdr-plugin-vnsiserver-1.3.1/debian/patches/gcc6-fixes.patch vdr-plugin-vnsiserver-1.3.1/debian/patches/gcc6-fixes.patch --- vdr-plugin-vnsiserver-1.3.1/debian/patches/gcc6-fixes.patch 1970-01-01 00:00:00.000000000 +0000 +++ vdr-plugin-vnsiserver-1.3.1/debian/patches/gcc6-fixes.patch 2016-01-23 20:54:39.000000000 +0000 @@ -0,0 +1,33 @@ +Description: GCC 6 related fixes +Author: Tobias Grimm +Bug: https://github.com/FernetMenta/vdr-plugin-vnsiserver/pull/38 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- a/config.h ++++ b/config.h +@@ -34,19 +34,19 @@ + // log output configuration + + #ifdef CONSOLEDEBUG +-#define DEBUGLOG(x...) printf("VNSI: "x) ++#define DEBUGLOG(x...) printf("VNSI: " x) + #elif defined DEBUG +-#define DEBUGLOG(x...) dsyslog("VNSI: "x) ++#define DEBUGLOG(x...) dsyslog("VNSI: " x) + #else + #define DEBUGLOG(x...) + #endif + + #ifdef CONSOLEDEBUG +-#define INFOLOG(x...) printf("VNSI: "x) +-#define ERRORLOG(x...) printf("VNSI-Error: "x) ++#define INFOLOG(x...) printf("VNSI: " x ) ++#define ERRORLOG(x...) printf("VNSI-Error: " x) + #else +-#define INFOLOG(x...) isyslog("VNSI: "x) +-#define ERRORLOG(x...) esyslog("VNSI-Error: "x) ++#define INFOLOG(x...) isyslog("VNSI: " x) ++#define ERRORLOG(x...) esyslog("VNSI-Error: " x) + #endif + + // default settings diff -Nru vdr-plugin-vnsiserver-1.3.1/debian/patches/series vdr-plugin-vnsiserver-1.3.1/debian/patches/series --- vdr-plugin-vnsiserver-1.3.1/debian/patches/series 2015-11-01 19:05:16.000000000 +0000 +++ vdr-plugin-vnsiserver-1.3.1/debian/patches/series 2016-01-23 20:54:39.000000000 +0000 @@ -1 +1,2 @@ fix-RAM-timeshift-stream-corruption.patch +gcc6-fixes.patch