From fa68a0ba55a1a165937c360f54744fd77001c070 Mon Sep 17 00:00:00 2001 From: lraab Date: Sat, 3 Sep 2022 02:22:40 +0000 Subject: [PATCH] audio/ncmpc: remove unneeded patch that I missed and spotted by aja@ --- audio/ncmpc/patches/patch-src_screen_init_cxx | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 audio/ncmpc/patches/patch-src_screen_init_cxx diff --git a/audio/ncmpc/patches/patch-src_screen_init_cxx b/audio/ncmpc/patches/patch-src_screen_init_cxx deleted file mode 100644 index 6a749d1538c..00000000000 --- a/audio/ncmpc/patches/patch-src_screen_init_cxx +++ /dev/null @@ -1,14 +0,0 @@ -Index: src/screen_init.cxx ---- src/screen_init.cxx.orig -+++ src/screen_init.cxx -@@ -49,8 +49,8 @@ ScreenManager::ScreenManager(EventLoop &event_loop) no - #ifdef ENABLE_COLORS - if (options.enable_colors) { - /* set background attributes */ -- wbkgd(stdscr, COLOR_PAIR(Style::LIST)); -- wbkgd(main_window.w, COLOR_PAIR(Style::LIST)); -+ wbkgd(stdscr, COLOR_PAIR((int)Style::LIST)); -+ wbkgd(main_window.w, COLOR_PAIR((int)Style::LIST)); - } - #endif - }