diff options
author | 2022-02-07 07:23:44 +0100 | |
---|---|---|
committer | 2022-02-07 09:01:53 +0100 | |
commit | 53427488a3a6df7745e8235bf6c17ed3fd49734c (patch) | |
tree | 20859a649400a3c2ad6279a8702305f2d3252e4b /media-sound/guitarix | |
parent | dev-java/kafka-clients: Initial import (diff) | |
download | gentoo-53427488a3a6df7745e8235bf6c17ed3fd49734c.tar.gz gentoo-53427488a3a6df7745e8235bf6c17ed3fd49734c.tar.bz2 gentoo-53427488a3a6df7745e8235bf6c17ed3fd49734c.zip |
media-sound/guitarix: remove unused patch
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/24103
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-sound/guitarix')
-rw-r--r-- | media-sound/guitarix/files/guitarix-0.42.1-fix-build-with-glib-2.68.patch | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/media-sound/guitarix/files/guitarix-0.42.1-fix-build-with-glib-2.68.patch b/media-sound/guitarix/files/guitarix-0.42.1-fix-build-with-glib-2.68.patch deleted file mode 100644 index 345f5e9a0aab..000000000000 --- a/media-sound/guitarix/files/guitarix-0.42.1-fix-build-with-glib-2.68.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/src/headers/gx_system.h b/src/headers/gx_system.h -index d334ecfc..88d97567 100644 ---- a/src/headers/gx_system.h -+++ b/src/headers/gx_system.h -@@ -132,7 +132,7 @@ inline T *atomic_get(T*& p) { - - template <class T> - inline bool atomic_compare_and_exchange(T **p, T *oldv, T *newv) { -- return g_atomic_pointer_compare_and_exchange(reinterpret_cast<void* volatile*>(p), static_cast<void*>(oldv), newv); -+ return g_atomic_pointer_compare_and_exchange(reinterpret_cast<void**>(p), static_cast<void*>(oldv), newv); - } - - |