summaryrefslogtreecommitdiffstats
path: root/src/Log.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-23 22:05:51 +0200
committerDavid Robillard <d@drobilla.net>2018-09-23 22:05:51 +0200
commit407099d7a30d01799824c7d4f341e0095e752919 (patch)
treedfbfd05e00ebf98c625fb00c7bc2075077273221 /src/Log.cpp
parente0e437c0fd970103685db2f1d0c83a9c461ad87f (diff)
downloadingen-407099d7a30d01799824c7d4f341e0095e752919.tar.gz
ingen-407099d7a30d01799824c7d4f341e0095e752919.tar.bz2
ingen-407099d7a30d01799824c7d4f341e0095e752919.zip
WIP: Fix unused parameter warningsfix-unused-parameter-warnings
Diffstat (limited to 'src/Log.cpp')
-rw-r--r--src/Log.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Log.cpp b/src/Log.cpp
index c1f8cb0a..1e4901a1 100644
--- a/src/Log.cpp
+++ b/src/Log.cpp
@@ -37,6 +37,8 @@ Log::rt_error(const char* msg)
#ifndef NDEBUG
va_list args;
vtprintf(_uris.log_Error, msg, args);
+#else
+ (void)msg;
#endif
}