diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-07-19 13:54:33 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-07-19 13:54:33 +0200 |
commit | ea2d9e8ee5db8ae5ec1aaa15eebda3296a027baf (patch) | |
tree | 0d41347c8f9b0e60ae2f654f2f52640380a1beaa /lv2 | |
parent | a440d77c3396d26ebf81f178a933b106f8d2fefb (diff) |
Fix compiling with -Wall/error but no hugin.
Diffstat (limited to 'lv2')
-rw-r--r-- | lv2/input_lv2.cc | 2 |
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); } |