diff options
author | Ruoxi Wang <thuwrx10@gmail.com> | 2020-02-25 16:19:54 +0800 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-03-17 14:30:04 +0100 |
commit | 3aad5eb1b08ed5c27e60aa36021c4a85ce90c08f (patch) | |
tree | 41cac1b6af7aa36ee0a2e70ce858613b966c65b6 /plugins/eg-sampler.lv2 | |
parent | 0e0a6feb46618750c235a2da88b5434ca3dd9b73 (diff) | |
download | lv2-3aad5eb1b08ed5c27e60aa36021c4a85ce90c08f.tar.xz |
Use LV2_ATOM_BODY macros in examples instead of pointer arithmetic
Diffstat (limited to 'plugins/eg-sampler.lv2')
-rw-r--r-- | plugins/eg-sampler.lv2/sampler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/eg-sampler.lv2/sampler.c b/plugins/eg-sampler.lv2/sampler.c index 4e6afdf..ed49903 100644 --- a/plugins/eg-sampler.lv2/sampler.c +++ b/plugins/eg-sampler.lv2/sampler.c @@ -322,7 +322,7 @@ handle_event(Sampler* self, LV2_Atom_Event* ev) PeaksURIs* peaks_uris = &self->psend.uris; if (ev->body.type == uris->midi_Event) { - const uint8_t* const msg = (const uint8_t*)(ev + 1); + const uint8_t* const msg = (const uint8_t*)LV2_ATOM_BODY_CONST(ev); switch (lv2_midi_message_type(msg)) { case LV2_MIDI_MSG_NOTE_ON: self->frame = 0; |