summaryrefslogtreecommitdiffstats
path: root/src/Log.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Log.cpp')
-rw-r--r--src/Log.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Log.cpp b/src/Log.cpp
index c1f8cb0a..c325a8ed 100644
--- a/src/Log.cpp
+++ b/src/Log.cpp
@@ -143,13 +143,13 @@ free_log_feature(LV2_Feature* feature) {
}
SPtr<LV2_Feature>
-Log::Feature::feature(World* world, Node* block)
+Log::Feature::feature(World& world, Node* block)
{
Handle* handle = (Handle*)calloc(1, sizeof(Handle));
handle->lv2_log.handle = handle;
handle->lv2_log.printf = log_printf;
handle->lv2_log.vprintf = log_vprintf;
- handle->log = &world->log();
+ handle->log = &world.log();
handle->node = block;
LV2_Feature* f = (LV2_Feature*)malloc(sizeof(LV2_Feature));