summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2015-07-19 13:54:33 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2015-07-19 13:54:33 +0200
commitea2d9e8ee5db8ae5ec1aaa15eebda3296a027baf (patch)
tree0d41347c8f9b0e60ae2f654f2f52640380a1beaa
parenta440d77c3396d26ebf81f178a933b106f8d2fefb (diff)
Fix compiling with -Wall/error but no hugin.
-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);
}