aboutsummaryrefslogtreecommitdiffstats
path: root/src/mdaPiano.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-12-15 22:29:00 +0000
committerDavid Robillard <d@drobilla.net>2013-12-15 22:29:00 +0000
commit4710ac3a505af53602b7ca88821601496bf2fd6b (patch)
tree1e09028f39996c67a770480ad7d484d3bb8aeda6 /src/mdaPiano.cpp
parentf0f118b699d623cb11ed5c358cbc027f008f2ecb (diff)
downloadmda.lv2-4710ac3a505af53602b7ca88821601496bf2fd6b.tar.gz
mda.lv2-4710ac3a505af53602b7ca88821601496bf2fd6b.tar.bz2
mda.lv2-4710ac3a505af53602b7ca88821601496bf2fd6b.zip
Fix const-violating casts.
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/mda.lv2@5173 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/mdaPiano.cpp')
-rw-r--r--src/mdaPiano.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mdaPiano.cpp b/src/mdaPiano.cpp
index 3a05fbe..5ae3bf0 100644
--- a/src/mdaPiano.cpp
+++ b/src/mdaPiano.cpp
@@ -328,7 +328,7 @@ void mdaPiano::processReplacing(float **inputs, float **outputs, int32_t sampleF
float x, l, r;
int32_t i;
- LV2_Atom_Event* ev = lv2_atom_sequence_begin(&eventInput->body);
+ const LV2_Atom_Event* ev = lv2_atom_sequence_begin(&eventInput->body);
while(frame<sampleFrames)
{
bool end = lv2_atom_sequence_is_end(&eventInput->body, eventInput->atom.size, ev);