summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Log.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Log.cpp b/src/Log.cpp
index 259d9a3e..397e8047 100644
--- a/src/Log.cpp
+++ b/src/Log.cpp
@@ -84,7 +84,7 @@ Log::vtprintf(LV2_URID type, const char* fmt, va_list args)
if (type == _uris.log_Trace && !_trace) {
return 0;
} else if (_sink) {
- ret = _sink(type, fmt, args);
+ _sink(type, fmt, args);
}
if (_log) {