diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2017-08-09 22:10:34 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2017-08-09 22:10:34 +0200 |
commit | fb5999933d38b7ef6a7efda05f7a46a8b0f55e2b (patch) | |
tree | 4693c33b1cedc4351b718a892b6a7f5410e2c665 | |
parent | 00ea7e0fd35ed38c0ff079339971aa0cf34ab7b6 (diff) | |
download | sherlock.lv2-fb5999933d38b7ef6a7efda05f7a46a8b0f55e2b.tar.xz |
Squashed 'pugl/' changes from 0406d71..4fed5fe
4fed5fe Change ulong to unsigned long for FreeBSD.
git-subtree-dir: pugl
git-subtree-split: 4fed5fe231a3af0102ac67e32e4b446ea2733df9
-rw-r--r-- | pugl/pugl_x11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pugl/pugl_x11.c b/pugl/pugl_x11.c index 3d29ab3..a8daac4 100644 --- a/pugl/pugl_x11.c +++ b/pugl/pugl_x11.c @@ -648,7 +648,7 @@ puglPasteFromClipboard(PuglView* view, size_t* len) if( (xevent.xselection.selection == impl->clipboard) && (xevent.xselection.target == impl->utf8_string) && (xevent.xselection.property == XA_PRIMARY) ) { - ulong nitems, rem; + unsigned long nitems, rem; int format; uint8_t* data; Atom type; |