mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
media-libs/dssi: fixed incompatible pointer
Closes: https://bugs.gentoo.org/925497 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
@@ -26,6 +26,7 @@ BDEPEND="virtual/pkgconfig"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-1.1.1-no-werror.patch
|
||||
"${FILESDIR}"/${PN}-1.1.1-incompatible-pointer.patch
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
|
||||
20
media-libs/dssi/files/dssi-1.1.1-incompatible-pointer.patch
Normal file
20
media-libs/dssi/files/dssi-1.1.1-incompatible-pointer.patch
Normal file
@@ -0,0 +1,20 @@
|
||||
--- a/jack-dssi-host/jack-dssi-host.c
|
||||
+++ b/jack-dssi-host/jack-dssi-host.c
|
||||
@@ -119,7 +119,7 @@ LADSPA_Data get_port_default(const LADSPA_Descriptor *plugin, int port);
|
||||
void osc_error(int num, const char *m, const char *path);
|
||||
|
||||
int osc_message_handler(const char *path, const char *types, lo_arg **argv, int
|
||||
- argc, void *data, void *user_data) ;
|
||||
+ argc, struct lo_message_ *data, void *user_data) ;
|
||||
int osc_debug_handler(const char *path, const char *types, lo_arg **argv, int
|
||||
argc, void *data, void *user_data) ;
|
||||
|
||||
@@ -1919,7 +1919,7 @@ int osc_debug_handler(const char *path, const char *types, lo_arg **argv,
|
||||
}
|
||||
|
||||
int osc_message_handler(const char *path, const char *types, lo_arg **argv,
|
||||
- int argc, void *data, void *user_data)
|
||||
+ int argc, struct lo_message_ *data, void *user_data)
|
||||
{
|
||||
int i;
|
||||
d3h_instance_t *instance = NULL;
|
||||
Reference in New Issue
Block a user