summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-12-25 16:25:40 -0500
committerDavid Robillard <d@drobilla.net>2017-12-25 16:26:13 -0500
commit7d9819d811cf5752c5cf19b6908b8979c0e40aed (patch)
tree11df88b6c2d28dd567b5c5c889a5530df33d256c
parentbd89362f08dc07b3444d19bc373f2b4f8bc47b2c (diff)
downloadingen-7d9819d811cf5752c5cf19b6908b8979c0e40aed.tar.gz
ingen-7d9819d811cf5752c5cf19b6908b8979c0e40aed.tar.bz2
ingen-7d9819d811cf5752c5cf19b6908b8979c0e40aed.zip
Remove unused store
-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) {