--- vdr-plugin-xineliboutput/files/patch-frontend.c 1970-01-01 01:00:00.000000000 +0100 +++ vdr-plugin-xineliboutput/files/patch-frontend.c 2018-07-06 22:37:01.261770000 +0200 @@ -0,0 +1,11 @@ +--- a/frontend.c.orig 2012-05-11 07:37:27 UTC ++++ b/frontend.c +@@ -91,7 +91,7 @@ void cXinelibThread::KeypressHandler(con + if (!remote->Put(key, repeat, release)) { + if (!strcmp(keymap, "KBD")) { + uint64_t value = 0; +- sscanf(key, "%"PRIX64, &value); ++ sscanf(key, "%" PRIX64, &value); + if (value) { + remote->cRemote::Put(KBDKEY(value)); + return; --- vdr-plugin-xineliboutput/files/patch-osd.c 1970-01-01 01:00:00.000000000 +0100 +++ vdr-plugin-xineliboutput/files/patch-osd.c 2018-07-06 22:37:04.526128000 +0200 @@ -0,0 +1,11 @@ +--- a/osd.c.orig 2012-05-11 07:37:27 UTC ++++ b/osd.c +@@ -567,7 +567,7 @@ void cXinelibOsd::Flush(void) + int NumColors; + const tColor *Colors = Bitmap->Colors(NumColors); + if (Colors) { +- osd_rect_t DirtyArea = {x1:x1, y1:y1, x2:x2, y2:y2}; ++ osd_rect_t DirtyArea = {x1:(uint16_t)x1, y1:(uint16_t)y1, x2:(uint16_t)x2, y2:(uint16_t)y2}; + CmdLut8(i, + Left() + Bitmap->X0() + XOffset, Top() + Bitmap->Y0() + YOffset, + Bitmap->Width(), Bitmap->Height(), --- vdr-plugin-xineliboutput/files/patch-tools_sdp.h 1970-01-01 01:00:00.000000000 +0100 +++ vdr-plugin-xineliboutput/files/patch-tools_sdp.h 2018-07-06 22:37:08.094644000 +0200 @@ -0,0 +1,11 @@ +--- a/tools/sdp.h.orig 2012-05-11 07:37:27 UTC ++++ b/tools/sdp.h +@@ -54,7 +54,7 @@ static const char *vdr_sdp_description(c + s_data = cString::sprintf( + /*** session ***/ + /* version */ "v=0" +- /* origin */ "\r\n" "o=%s %u %"PRIu64" IN IP4 %s" ++ /* origin */ "\r\n" "o=%s %u %" PRIu64 " IN IP4 %s" + /* name */ "\r\n" "s=%s@%s (multicast %s:%d)" + /* opt:info */ /*"\r\n" "i=vdr-xineliboutput primary device output"*/ + /* time */ "\r\n" "t=0 0" --- vdr-plugin-xineliboutput/files/patch-tools_udp__pes__scheduler.c 1970-01-01 01:00:00.000000000 +0100 +++ vdr-plugin-xineliboutput/files/patch-tools_udp__pes__scheduler.c 2018-07-06 22:37:11.467759000 +0200 @@ -0,0 +1,11 @@ +--- a/tools/udp_pes_scheduler.c.orig 2012-05-11 07:37:27 UTC ++++ b/tools/udp_pes_scheduler.c +@@ -674,7 +674,7 @@ void cUdpScheduler::Schedule(const uchar + + if (DATA_IS_TS(Data)) { + if (ts_get_pcr_n(Data, Length/TS_SIZE, &pts)) { +- LOGSCR("UDP PCR: %"PRId64, pts); ++ LOGSCR("UDP PCR: %" PRId64, pts); + ScrSource = eScrFromPcr; + elapsed = CalcElapsedVtime(pts, eScrFromPcr); + } --- vdr-plugin-xineliboutput/files/patch-xineliboutput.c 1970-01-01 01:00:00.000000000 +0100 +++ vdr-plugin-xineliboutput/files/patch-xineliboutput.c 2018-07-06 22:37:15.038118000 +0200 @@ -0,0 +1,11 @@ +--- a/xineliboutput.c.orig 2012-05-11 07:37:27 UTC ++++ b/xineliboutput.c +@@ -104,7 +104,7 @@ const char cmdLineHelp[] = + " fbfe (framebuffer)\n" + " none (only remote frontends)\n" + " -r PORT --remote=PORT Listen PORT for remote clients\n" +-" (default "LISTEN_PORT_S")\n" ++" (default " LISTEN_PORT_S ")\n" + " none or 0 disables remote mode\n" + " Also local interface address can be specified:\n" + " --remote=: (default is all interfaces)\n"