summaryrefslogtreecommitdiffstats
path: root/src/engine
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-03-10 03:09:51 +0000
committerDavid Robillard <d@drobilla.net>2011-03-10 03:09:51 +0000
commitaae0d7d82bcc60d6977dd11bcdc60579aace04cb (patch)
treebf0a4cf310e166448cf6295d799c75f9bd476409 /src/engine
parent2290ef683f154abebe60dfb0392a21325d2a61e0 (diff)
downloadingen-aae0d7d82bcc60d6977dd11bcdc60579aace04cb.tar.gz
ingen-aae0d7d82bcc60d6977dd11bcdc60579aace04cb.tar.bz2
ingen-aae0d7d82bcc60d6977dd11bcdc60579aace04cb.zip
Use LV2_EVENT_URI.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3062 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine')
-rw-r--r--src/engine/JackDriver.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/engine/JackDriver.cpp b/src/engine/JackDriver.cpp
index 5f7a7d83..6b9e3f93 100644
--- a/src/engine/JackDriver.cpp
+++ b/src/engine/JackDriver.cpp
@@ -145,7 +145,9 @@ JackPort::pre_process(ProcessContext& context)
jack_midi_event_t ev;
jack_midi_event_get(&ev, jack_buf, i);
- if (!patch_buf->append(ev.time, 0, _driver->_midi_event_type, ev.size, ev.buffer))
+ if (!patch_buf->append(ev.time, 0,
+ _driver->_midi_event_type,
+ ev.size, ev.buffer))
LOG(warn) << "Failed to write MIDI to port buffer, event(s) lost!" << endl;
}
}