commit: 7833d18b44ae6354f071b83f698df29c239e18de Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Sat May 10 10:09:52 2025 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sat May 10 10:10:20 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7833d18b
media-plugins/vdr-fritzbox: Restore still in use patch Closes: https://bugs.gentoo.org/955695 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> .../vdr-fritzbox/files/vdr-fritzbox-1.5.3_clang.patch | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/media-plugins/vdr-fritzbox/files/vdr-fritzbox-1.5.3_clang.patch b/media-plugins/vdr-fritzbox/files/vdr-fritzbox-1.5.3_clang.patch new file mode 100644 index 000000000000..b6d0326ef763 --- /dev/null +++ b/media-plugins/vdr-fritzbox/files/vdr-fritzbox-1.5.3_clang.patch @@ -0,0 +1,16 @@ +compile fix llvm/clang + +https://bugs.gentoo.org/740290 + +Signed-off-by: Joerg Bornkessel <[email protected]> (14 May 2021) +--- a/notifyosd.cpp ++++ b/notifyosd.cpp +@@ -128,7 +128,7 @@ + delete osd; + osd = cOsdProvider::NewOsd(left, top); + // defines drawing area and color depth +- tArea Area = { 0, 0, width-1, height-1, colorDepth }; ++ tArea Area = { 0, 0, static_cast<int>(width-1), static_cast<int>(height-1), colorDepth }; + osd->SetAreas(&Area, 1); + // draw osd frame, 2px thick + osd->DrawRectangle(0, 0, width-1, height-1, clrBackground);
