summaryrefslogtreecommitdiff
path: root/lv2
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2015-07-19 13:54:33 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2016-01-20 13:31:08 +0100
commitfec796b8c5e6c933585d75f6405adf1b222c491e (patch)
treed09a285265556608d6c8f8c13e27e0d4a19376e2 /lv2
parentaa7a75b170bf988688890443f568dbd439bb3df4 (diff)
Fix compiling with -Wall/error but no hugin.
Diffstat (limited to 'lv2')
-rw-r--r--lv2/input_lv2.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lv2/input_lv2.cc b/lv2/input_lv2.cc
index e70d293..f65cf83 100644
--- a/lv2/input_lv2.cc
+++ b/lv2/input_lv2.cc
@@ -86,7 +86,7 @@ event_t *InputLV2::run(size_t pos, size_t len, size_t *nevents)
if ((data[0] & 0xF0) == 0x80) { // note off
int key = data[1];
-
+ (void)key;
DEBUG(lv2input, "Event (off) key:%d\n", key);
}