summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-01-06 18:33:54 +0000
committerDavid Robillard <d@drobilla.net>2010-01-06 18:33:54 +0000
commit092eb35edb999a9dd809e197d7dd9a4ebb0d6bd5 (patch)
tree0e90ab556df41582f3f0b572d4b3e5490ba494d6
parent638414ec244f0ce5620795628366a9d557d33c58 (diff)
downloadingen-092eb35edb999a9dd809e197d7dd9a4ebb0d6bd5.tar.gz
ingen-092eb35edb999a9dd809e197d7dd9a4ebb0d6bd5.tar.bz2
ingen-092eb35edb999a9dd809e197d7dd9a4ebb0d6bd5.zip
Fix error message.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2346 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--src/engine/ConnectionImpl.cpp2
-rw-r--r--src/engine/JackDriver.cpp2
-rw-r--r--src/engine/JackDriver.hpp1
3 files changed, 3 insertions, 2 deletions
diff --git a/src/engine/ConnectionImpl.cpp b/src/engine/ConnectionImpl.cpp
index c80b8000..47fdce36 100644
--- a/src/engine/ConnectionImpl.cpp
+++ b/src/engine/ConnectionImpl.cpp
@@ -112,7 +112,7 @@ ConnectionImpl::process(Context& context)
IntrusivePtr<ObjectBuffer> local_buf = PtrCast<ObjectBuffer>(_local_buffer);
if (!local_buf) {
- cerr << "ERROR: Queued connection but source is not an EventBuffer" << endl;
+ cerr << "ERROR: Queued connection but local buffer is not an ObjectBuffer" << endl;
return;
}
diff --git a/src/engine/JackDriver.cpp b/src/engine/JackDriver.cpp
index 679887d7..9102cbe5 100644
--- a/src/engine/JackDriver.cpp
+++ b/src/engine/JackDriver.cpp
@@ -43,6 +43,8 @@
using namespace std;
using namespace Raul;
+typedef jack_default_audio_sample_t jack_sample_t;
+
namespace Ingen {
diff --git a/src/engine/JackDriver.hpp b/src/engine/JackDriver.hpp
index cd9e3a8d..e120d74e 100644
--- a/src/engine/JackDriver.hpp
+++ b/src/engine/JackDriver.hpp
@@ -37,7 +37,6 @@ class PatchImpl;
class PortImpl;
class DuplexPort;
class JackDriver;
-typedef jack_default_audio_sample_t jack_sample_t;
/** Used internally by JackDriver to represent a Jack port.