summaryrefslogtreecommitdiffstats
path: root/src/engine
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine')
-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.