freebsd-ports/audio/midi-matrix-lv2/files/patch-pugl_pugl_pugl__x11.c
Richard Gallamore 935889bb76 The Midi Matrix (Channel Filter) is a 3-in-1 filter plugin with a simple UI
enabling you to easily accomplish:

* MIDI channel filtering (e.g. blocking of specific channels)
* MIDI channel multiplication (e.g. send events from channel X to channels X, Y and Z)
* MIDI channel rerouting (e.g send events from channel X to channel Y)
* And any possible combination thereof

WWW: http://open-music-kontrollers.ch/lv2/midi_matrix

PR:		221344
Submitted by:	Yuri Victorovich (maintainer)
Reviewed by:	matthew (mentor)
Approved by:	matthew (mentor)
Differential Revision:	https://reviews.freebsd.org/D12060
2017-08-17 19:50:26 +00:00

11 lines
405 B
C

--- pugl/pugl/pugl_x11.c.orig 2017-05-16 21:46:21 UTC
+++ pugl/pugl/pugl_x11.c
@@ -648,7 +648,7 @@ puglPasteFromClipboard(PuglView* view, s
if( (xevent.xselection.selection == impl->clipboard)
&& (xevent.xselection.target == impl->utf8_string)
&& (xevent.xselection.property == XA_PRIMARY) ) {
- ulong nitems, rem;
+ uint32_t nitems, rem;
int format;
uint8_t* data;
Atom type;