aboutsummaryrefslogtreecommitdiffstats
path: root/src/state.c
diff options
context:
space:
mode:
authorTimo Wischer <twischer@de.adit-jv.com>2017-10-24 13:10:28 +0200
committerDavid Robillard <d@drobilla.net>2018-09-24 19:08:41 +0200
commite9d44aaf8285901f2f95daf7eba7d08f72cdcc53 (patch)
tree0e06e9a3241d15692bc419028d00f30c9cef570a /src/state.c
parent6f22ee045e7535c5961374d57453c39d1cee224c (diff)
downloadjalv-e9d44aaf8285901f2f95daf7eba7d08f72cdcc53.tar.gz
jalv-e9d44aaf8285901f2f95daf7eba7d08f72cdcc53.tar.bz2
jalv-e9d44aaf8285901f2f95daf7eba7d08f72cdcc53.zip
Fix unused parameter warnings
Signed-off-by: Timo Wischer <twischer@de.adit-jv.com>
Diffstat (limited to 'src/state.c')
-rw-r--r--src/state.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/state.c b/src/state.c
index eeeda78..0f52c86 100644
--- a/src/state.c
+++ b/src/state.c
@@ -146,11 +146,11 @@ jalv_unload_presets(Jalv* jalv)
}
static void
-set_port_value(const char* port_symbol,
- void* user_data,
- const void* value,
- uint32_t size,
- uint32_t type)
+set_port_value(const char* port_symbol,
+ void* user_data,
+ const void* value,
+ ZIX_UNUSED uint32_t size,
+ uint32_t type)
{
Jalv* jalv = (Jalv*)user_data;
struct Port* port = jalv_port_by_symbol(jalv, port_symbol);