summaryrefslogtreecommitdiff
path: root/libs/surfaces/faderport
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-12-14 11:48:09 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2015-12-14 13:28:31 -0500
commitcc607fa161c77a60b20b5c90bdd2ccdc81dfc043 (patch)
treebbf09e2b3d7ab4a0bf12c279f89f9eece0c8d61d /libs/surfaces/faderport
parent634321ba455139c7d993857b417745d247c0ce4b (diff)
fix DEBUG_TRACE messages from faderport that used MackieControlProtocol via cut-n-paste
Diffstat (limited to 'libs/surfaces/faderport')
-rw-r--r--libs/surfaces/faderport/faderport.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/surfaces/faderport/faderport.cc b/libs/surfaces/faderport/faderport.cc
index 14e26dd45e..56706fa431 100644
--- a/libs/surfaces/faderport/faderport.cc
+++ b/libs/surfaces/faderport/faderport.cc
@@ -542,7 +542,7 @@ FaderPort::sysex_handler (MIDI::Parser &p, MIDI::byte *buf, size_t sz)
int
FaderPort::set_active (bool yn)
{
- DEBUG_TRACE (DEBUG::FaderPort, string_compose("MackieControlProtocol::set_active init with yn: '%1'\n", yn));
+ DEBUG_TRACE (DEBUG::FaderPort, string_compose("Faderport::set_active init with yn: '%1'\n", yn));
if (yn == active()) {
return 0;
@@ -569,7 +569,7 @@ FaderPort::set_active (bool yn)
ControlProtocol::set_active (yn);
- DEBUG_TRACE (DEBUG::FaderPort, string_compose("MackieControlProtocol::set_active done with yn: '%1'\n", yn));
+ DEBUG_TRACE (DEBUG::FaderPort, string_compose("Faderport::set_active done with yn: '%1'\n", yn));
return 0;
}