summaryrefslogtreecommitdiffstats
path: root/src/server/RunContext.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-12-18 00:45:27 +0100
committerDavid Robillard <d@drobilla.net>2019-01-12 18:20:04 +0100
commit8c19e157e148efb59d6ea2f815783755b6075c7e (patch)
tree094a95326138dd3a46cbd52b84981e36faebc64a /src/server/RunContext.cpp
parent967a8b9d6690a5ece385d07af04c322d645de23f (diff)
downloadingen-8c19e157e148efb59d6ea2f815783755b6075c7e.tar.gz
ingen-8c19e157e148efb59d6ea2f815783755b6075c7e.tar.bz2
ingen-8c19e157e148efb59d6ea2f815783755b6075c7e.zip
Rename Atom::get_body to Atom::body and use Atom::ptr consistently
Diffstat (limited to 'src/server/RunContext.cpp')
-rw-r--r--src/server/RunContext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/RunContext.cpp b/src/server/RunContext.cpp
index ee272d46..6efc81ee 100644
--- a/src/server/RunContext.cpp
+++ b/src/server/RunContext.cpp
@@ -116,7 +116,7 @@ RunContext::emit_notifications(FrameTime end)
if (_event_sink->read(sizeof(note), &note) == sizeof(note)) {
Atom value = _engine.world()->forge().alloc(
note.size, note.type, nullptr);
- if (_event_sink->read(note.size, value.get_body()) == note.size) {
+ if (_event_sink->read(note.size, value.body()) == note.size) {
i += note.size;
const char* key = _engine.world()->uri_map().unmap_uri(note.key);
if (key) {