summaryrefslogtreecommitdiff
path: root/RtMidi.cpp
diff options
context:
space:
mode:
authorandrew morton <drewish@katherinehouse.com>2014-01-18 23:38:39 -0800
committerandrew morton <drewish@katherinehouse.com>2014-01-18 23:38:39 -0800
commitb52043e4b9b782f51347ab4b895a957ed80529ac (patch)
treee3b702ee0ac50b11b71914a85d5934467b3089b1 /RtMidi.cpp
parent403414019715d56e990da67b9268dee0ecf03c50 (diff)
Correct some error messages in the Jack code
Diffstat (limited to 'RtMidi.cpp')
-rw-r--r--RtMidi.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/RtMidi.cpp b/RtMidi.cpp
index 33738a9..65375d0 100644
--- a/RtMidi.cpp
+++ b/RtMidi.cpp
@@ -3509,7 +3509,7 @@ void MidiInJack :: openPort( unsigned int portNumber, const std::string portName
JACK_DEFAULT_MIDI_TYPE, JackPortIsInput, 0 );
if ( data->port == NULL) {
- errorString_ = "MidiInJack::openVirtualPort: JACK error creating virtual port";
+ errorString_ = "MidiInJack::openPort: JACK error creating port";
RtMidi::error( RtError::DRIVER_ERROR, errorString_ );
}
@@ -3664,7 +3664,7 @@ void MidiOutJack :: openPort( unsigned int portNumber, const std::string portNam
JACK_DEFAULT_MIDI_TYPE, JackPortIsOutput, 0 );
if ( data->port == NULL ) {
- errorString_ = "MidiOutJack::openVirtualPort: JACK error creating virtual port";
+ errorString_ = "MidiOutJack::openPort: JACK error creating port";
RtMidi::error( RtError::DRIVER_ERROR, errorString_ );
}