summaryrefslogtreecommitdiff
path: root/libs/surfaces/mackie/mackie_port.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-07-28 11:49:14 +0000
committerCarl Hetherington <carl@carlh.net>2009-07-28 11:49:14 +0000
commit5eaf61242f16c7638c0e71a9c82af5a781c24e87 (patch)
tree0f6b6ca74f073f8867ab19774487e4da14352254 /libs/surfaces/mackie/mackie_port.cc
parent16b964020fdf9deda6262e7dd9048e36acc0912e (diff)
Fix some more warnings.
git-svn-id: svn://localhost/ardour2/branches/3.0@5425 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/surfaces/mackie/mackie_port.cc')
-rw-r--r--libs/surfaces/mackie/mackie_port.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/surfaces/mackie/mackie_port.cc b/libs/surfaces/mackie/mackie_port.cc
index d767c4c745..e3a302fe65 100644
--- a/libs/surfaces/mackie/mackie_port.cc
+++ b/libs/surfaces/mackie/mackie_port.cc
@@ -189,7 +189,7 @@ MidiByteArray MackiePort::host_connection_confirmation( const MidiByteArray & by
return MidiByteArray( 2, 0x13, 0x00 );
}
-void MackiePort::probe_emulation( const MidiByteArray & bytes )
+void MackiePort::probe_emulation (const MidiByteArray &)
{
#if 0
cout << "MackiePort::probe_emulation: " << bytes.size() << ", " << bytes << endl;
@@ -330,7 +330,7 @@ bool MackiePort::wait_for_init()
return SurfacePort::active();
}
-void MackiePort::handle_midi_sysex (MIDI::Parser & parser, MIDI::byte * raw_bytes, size_t count )
+void MackiePort::handle_midi_sysex (MIDI::Parser &, MIDI::byte * raw_bytes, size_t count )
{
MidiByteArray bytes( count, raw_bytes );
#ifdef PORT_DEBUG
@@ -429,7 +429,7 @@ bool MackiePort::handle_control_timeout_event ( Control * control )
// converts midi messages into control_event signals
// it might be worth combining this with lookup_control
// because they have similar logic flows.
-void MackiePort::handle_midi_any (MIDI::Parser & parser, MIDI::byte * raw_bytes, size_t count )
+void MackiePort::handle_midi_any (MIDI::Parser &, MIDI::byte * raw_bytes, size_t count )
{
#ifdef DEBUG
MidiByteArray bytes( count, raw_bytes );