summaryrefslogtreecommitdiffstats
path: root/src/LashDriver.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-01-14 04:22:16 +0000
committerDavid Robillard <d@drobilla.net>2007-01-14 04:22:16 +0000
commitf9a66347152ad4459a564d5f92fdeabb6d8b4019 (patch)
tree8ab4ed5436a83bbad634773d5b3b96428f77d85e /src/LashDriver.cpp
parent8e946da143030272b1bb325aba1ea52e67792254 (diff)
downloadpatchage-f9a66347152ad4459a564d5f92fdeabb6d8b4019.tar.gz
patchage-f9a66347152ad4459a564d5f92fdeabb6d8b4019.tar.bz2
patchage-f9a66347152ad4459a564d5f92fdeabb6d8b4019.zip
Follow Jack port creation/destruction.
git-svn-id: http://svn.drobilla.net/lad/patchage@257 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/LashDriver.cpp')
-rw-r--r--src/LashDriver.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/LashDriver.cpp b/src/LashDriver.cpp
index 759c718..147cb1c 100644
--- a/src/LashDriver.cpp
+++ b/src/LashDriver.cpp
@@ -97,10 +97,10 @@ void
LashDriver::handle_event(lash_event_t* ev)
{
LASH_Event_Type type = lash_event_get_type(ev);
- const char* c_str = lash_event_get_string(ev);
- string str = (c_str == NULL) ? "" : c_str;
+ const char* c_str = lash_event_get_string(ev);
+ string str = (c_str == NULL) ? "" : c_str;
- cout << "[LashDriver] LASH Event. Type = " << (unsigned int)type << ", string = " << str << "**********" << endl;
+ //cout << "[LashDriver] LASH Event. Type = " << (unsigned int)type << ", string = " << str << "**********" << endl;
switch (type) {
case LASH_Project_Add: