From 8c19e157e148efb59d6ea2f815783755b6075c7e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 18 Dec 2017 00:45:27 +0100 Subject: Rename Atom::get_body to Atom::body and use Atom::ptr consistently --- src/server/RunContext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/server/RunContext.cpp') 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), ¬e) == 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) { -- cgit v1.2.1